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

Add these tests back

parent 950381a5
No related branches found
No related tags found
No related merge requests found
......@@ -59,10 +59,10 @@ class PureScalaValidSuite3 extends PureScalaValidSuite {
val optionVariants = List(opts(2))
}
class PureScalaValidSuiteZ3 extends PureScalaValidSuite {
val optionVariants = Nil//if (isZ3Available) List(opts(3)) else Nil
val optionVariants = if (isZ3Available) List(opts(3)) else Nil
}
class PureScalaValidSuiteCVC4 extends PureScalaValidSuite {
val optionVariants = Nil//if (isCVC4Available) List(opts(4)) else Nil
val optionVariants = if (isCVC4Available) List(opts(4)) else Nil
}
class PureScalaInvalidSuite extends PureScalaVerificationSuite {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment