Skip to content

Commit 0f80a74

Browse files
committed
Ignore slow test, unignore fast test
1 parent 738284b commit 0f80a74

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/it/scala/inox/tip/TipTestSuite.scala

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,8 @@ class TipTestSuite extends TestSuite with ResourceUtils {
2525
private def ignoreSAT(ctx: Context, file: java.io.File): FilterStatus =
2626
ctx.options.findOptionOrDefault(optSelectedSolvers).headOption match {
2727
case Some(solver) => (solver, file.getName) match {
28-
// test containing list of booleans, so CVC4 will crash on this
29-
// See http://church.cims.nyu.edu/bugzilla3/show_bug.cgi?id=500
30-
case ("smt-cvc4", "List-fold.tip") => Skip
3128
// Z3 and CVC4 binaries are exceedingly slow on these benchmarks
32-
case ("smt-z3" | "smt-cvc4", "BinarySearchTreeQuant.scala-2.tip") => Ignore
33-
case ("smt-z3" | "smt-cvc4", "ForallAssoc.scala-0.tip") => Ignore
29+
case ("no-inc:smt-z3" | "smt-z3" | "smt-cvc4", "ForallAssoc.scala-0.tip") => Ignore
3430
// this test only holds when assumeChecked=false
3531
case (_, "LambdaEquality2.scala-1.tip") if ctx.options.findOptionOrDefault(optAssumeChecked) => Skip
3632
case _ => Test

0 commit comments

Comments
 (0)