Skip to content

Commit

Permalink
don't use '--analyse' in tests, whoops
Browse files Browse the repository at this point in the history
  • Loading branch information
l-kent committed Oct 12, 2023
1 parent 3835365 commit 96bc93f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/scala/SystemTests.scala
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ class SystemTests extends AnyFunSuite {
val RELFPath = variationPath + ".relf"
Logger.info(outPath)
if (File(specPath).exists) {
Main.main(Array("--adt", ADTPath, "--relf", RELFPath, "--spec", specPath, "--output", outPath, "--analyse"))
Main.main(Array("--adt", ADTPath, "--relf", RELFPath, "--spec", specPath, "--output", outPath))
} else {
Main.main(Array("--adt", ADTPath, "--relf", RELFPath, "--output", outPath, "--analyse"))
Main.main(Array("--adt", ADTPath, "--relf", RELFPath, "--output", outPath))
}
Logger.info(outPath + " done")
val boogieResult = Seq("boogie", "/timeLimit:10", "/printVerifiedProceduresCount:0", "/useArrayAxioms", outPath).!!
Expand Down

0 comments on commit 96bc93f

Please sign in to comment.