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

Free solvers in tests

parent 2103d041
No related branches found
No related tags found
No related merge requests found
......@@ -18,7 +18,7 @@ class NewSolversRegression extends VerificationRegression {
val optionVariants: List[List[String]] = {
val isCVC4Available = try {
CVC4Interpreter.buildDefault
CVC4Interpreter.buildDefault.free()
true
} catch {
case e: java.io.IOException =>
......
......@@ -16,7 +16,7 @@ class PureScalaVerificationRegression extends VerificationRegression {
val pipeBack = AnalysisPhase
val optionVariants: List[List[String]] = {
val isZ3Available = try {
Z3Interpreter.buildDefault
Z3Interpreter.buildDefault.free()
true
} catch {
case e: java.io.IOException =>
......@@ -24,7 +24,7 @@ class PureScalaVerificationRegression extends VerificationRegression {
}
val isCVC4Available = try {
CVC4Interpreter.buildDefault
CVC4Interpreter.buildDefault.free()
true
} catch {
case e: java.io.IOException =>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment