We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43afb95 commit 8408892Copy full SHA for 8408892
src/test/Tests/Symbolic.hs
@@ -1,12 +1,12 @@
1
module Tests.Symbolic (symbolicTests) where
2
3
import Test.Tasty (TestTree, testGroup)
4
-import Common (testContract', solved, verified)
+import Common (testContract', solcV, solved, verified)
5
import Echidna.Types.Worker (WorkerType(..))
6
7
symbolicTests :: TestTree
8
symbolicTests = testGroup "Symbolic tests"
9
- [ testContract' "symbolic/verify.sol" Nothing Nothing (Just "symbolic/verify.yaml") True SymbolicWorker
+ [ testContract' "symbolic/verify.sol" Nothing (Just (>= solcV (0,8,0))) (Just "symbolic/verify.yaml") True SymbolicWorker
10
[ ("simple passed", solved "simple")
11
, ("array passed", solved "array")
12
, ("negative passed", solved "negative")
0 commit comments