Skip to content

Commit

Permalink
pass option in tests to not fail silently
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelchassot committed Dec 4, 2024
1 parent dc0dc0b commit dc8e674
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/it/scala/inox/tip/TipTestSuite.scala
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ import scala.language.existentials
class TipTestSuite extends TestSuite with ResourceUtils {

override def configurations = Seq(
Seq(optSelectedSolvers(Set("nativez3")), optCheckModels(true)),
Seq(optSelectedSolvers(Set("smt-z3")), optCheckModels(true)),
Seq(optSelectedSolvers(Set("smt-cvc4")), optCheckModels(true)),
Seq(optSelectedSolvers(Set("smt-z3")), optCheckModels(true), optAssumeChecked(true)),
Seq(optSelectedSolvers(Set("no-inc:smt-z3")), optCheckModels(true))
Seq(optSelectedSolvers(Set("nativez3")), optSilentErrors(false), optCheckModels(true)),
Seq(optSelectedSolvers(Set("smt-z3")), optSilentErrors(false), optCheckModels(true)),
Seq(optSelectedSolvers(Set("smt-cvc4")), optSilentErrors(false), optCheckModels(true)),
Seq(optSelectedSolvers(Set("smt-z3")), optSilentErrors(false), optCheckModels(true), optAssumeChecked(true)),
Seq(optSelectedSolvers(Set("no-inc:smt-z3")), optSilentErrors(false), optCheckModels(true))
)

override protected def optionsString(options: Options): String = {
Expand Down

0 comments on commit dc8e674

Please sign in to comment.