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

XLangVerificationSuite checks for z3

parent 565d17ae
No related branches found
No related tags found
No related merge requests found
......@@ -2,13 +2,29 @@
package leon.regression.verification
import smtlib.interpreters.Z3Interpreter
class XLangVerificationSuite extends VerificationSuite {
val optionVariants: List[List[String]] = List(
List(),
List("--feelinglucky"),
List("--solvers=smt-z3", "--feelinglucky")
)
val optionVariants: List[List[String]] = {
val isZ3Available = try {
Z3Interpreter.buildDefault.free()
true
} catch {
case e: java.io.IOException =>
false
}
List(
List(),
List("--feelinglucky")
) ++ (
if (isZ3Available)
List(List("--solvers=smt-z3", "--feelinglucky"))
else Nil
)
}
val testDir: String = "regression/verification/xlang/"
override val desugarXLang = true
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment