Skip to content
Snippets Groups Projects
Commit 7c4d4cf2 authored by Manos Koukoutos's avatar Manos Koukoutos
Browse files

Check unknown vcs before invalid

parent de35fc53
Branches
Tags
No related merge requests found
...@@ -89,10 +89,11 @@ trait VerificationRegression extends LeonTestSuite { ...@@ -89,10 +89,11 @@ trait VerificationRegression extends LeonTestSuite {
forEachFileIn("invalid") { output => forEachFileIn("invalid") { output =>
val Output(report, reporter) = output val Output(report, reporter) = output
assert(report.totalInvalid > 0,
"There should be at least one invalid verification condition.")
assert(report.totalUnknown === 0, assert(report.totalUnknown === 0,
"There should not be unknown verification conditions.") "There should not be unknown verification conditions.")
assert(report.totalInvalid > 0,
"There should be at least one invalid verification condition.")
} }
super.run(testName, args) super.run(testName, args)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment