Skip to content

Commit ad87d5a

Browse files
committed
Reduce lower solc bound of verification test
1 parent c9ec9fc commit ad87d5a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/Tests/Symbolic.hs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ import Echidna.Types.Worker (WorkerType(..))
66

77
symbolicTests :: TestTree
88
symbolicTests = testGroup "Symbolic tests"
9-
[ testContract' "symbolic/verify.sol" Nothing (Just (>= solcV (0,8,0))) (Just "symbolic/verify.yaml") True SymbolicWorker
9+
[ testContract' "symbolic/verify.sol" Nothing (Just (>= solcV (0,6,9))) (Just "symbolic/verify.yaml") True SymbolicWorker
1010
[ ("simple passed", solved "simple")
1111
, ("array passed", solved "array")
1212
, ("negative passed", solved "negative")
1313
, ("close passed", solved "close")
1414
, ("far not verified", verified "far")
15-
, ("correct not verified", verified "correct")
16-
]
15+
, ("correct not verified", verified "correct")
16+
]
1717
-- This test is commented out because it requires a specific setup where both the FuzzWorker and SymbolicWorker are used.
1818
-- If you run the symbolic worker alone, it will hang indefinitely.
1919
--, testContract' "symbolic/explore.sol" Nothing Nothing (Just "symbolic/explore.yaml") True SymbolicWorker

0 commit comments

Comments
 (0)