@@ -2,7 +2,7 @@ module Tests.Integration (integrationTests) where
22
33import Test.Tasty (TestTree , testGroup )
44
5- import Common (testContract , testContractV , solcV , testContract' , checkConstructorConditions , passed , solved , solvedLen , solvedWith , solvedWithout , gasInRange )
5+ import Common (testContract , testContractV , solcV , testContract' , checkConstructorConditions , passed , solved , solvedLen , solvedWith , solvedWithout )
66import Data.Functor ((<&>) )
77import Data.Text (unpack )
88import Echidna.Types.Campaign (WorkerType (.. ))
@@ -60,8 +60,6 @@ integrationTests = testGroup "Solidity Integration Testing"
6060 [ (" echidna_library_call failed" , solved " echidna_library_call" )
6161 , (" echidna_valid_timestamp failed" , passed " echidna_valid_timestamp" )
6262 ]
63- , testContractV " basic/fallback.sol" (Just (< solcV (0 ,6 ,0 ))) Nothing
64- [ (" echidna_fallback failed" , solved " echidna_fallback" ) ]
6563 , testContract " basic/push_long.sol" (Just " basic/push_long.yaml" )
6664 [ (" test_long_5 passed" , solvedWithout NoCall " test_long_5" )]
6765 , testContract " basic/propGasLimit.sol" (Just " basic/propGasLimit.yaml" )
@@ -83,17 +81,8 @@ integrationTests = testGroup "Solidity Integration Testing"
8381 [ (" echidna_mutated passed" , solved " echidna_mutated" ) ]
8482 , testContract " basic/darray-mutation.sol" Nothing
8583 [ (" echidna_mutated passed" , solved " echidna_mutated" ) ]
86- , testContract " basic/gasuse.sol" (Just " basic/gasuse.yaml" )
87- [ (" echidna_true failed" , passed " echidna_true" )
88- , (" g gas estimate wrong" , gasInRange " g" 130000 40000000 )
89- , (" f_close1 gas estimate wrong" , gasInRange " f_close1" 400 2000 )
90- , (" f_open1 gas estimate wrong" , gasInRange " f_open1" 18000 23000 )
91- , (" push_b gas estimate wrong" , gasInRange " push_b" 39000 45000 )
92- ]
9384 , testContract " basic/gaslimit.sol" Nothing
9485 [ (" echidna_gaslimit passed" , passed " echidna_gaslimit" ) ]
95- , testContractV " basic/killed.sol" (Just (< solcV (0 ,8 ,0 ))) (Just " basic/killed.yaml" )
96- [ (" echidna_still_alive failed" , solved " echidna_still_alive" ) ]
9786 , checkConstructorConditions " basic/codesize.sol"
9887 " invalid codesize"
9988 , testContractV " basic/eip-170.sol" (Just (>= solcV (0 ,5 ,0 ))) (Just " basic/eip-170.yaml" )
0 commit comments