Skip to content

Commit

Permalink
Disable timeout test for CVC4 1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
langston-barrett committed Feb 5, 2025
1 parent 038e948 commit a9ae1be
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion what4/test/OnlineSolverTest.hs
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,10 @@ timeoutTests testLevel solvers =
-- quickly (~0.25s). This doesn't allow timeout
-- testing, and the speed suggests an improper
-- result as well.
(SolverName "CVC4", SolverVersion v) | "1.7" `elem` words v->
(SolverName "CVC4", SolverVersion v) | "1.7" `elem` words v ->
ignoreTestBecause "solver completes too quickly"
-- TODO(#278): Maybe the same problem as above?
(SolverName "CVC4", SolverVersion v) | "1.8" `elem` words v ->
ignoreTestBecause "solver completes too quickly"
_ -> id
in maybeSkipTest $ testGroup (snamestr $ testSolverName sti)
Expand Down

0 comments on commit a9ae1be

Please sign in to comment.