diff --git a/crates/ef-testing/src/models/case.rs b/crates/ef-testing/src/models/case.rs index 9d99d880..01f188e1 100644 --- a/crates/ef-testing/src/models/case.rs +++ b/crates/ef-testing/src/models/case.rs @@ -109,6 +109,16 @@ impl BlockchainTestCase { | "CallTheContractToCreateEmptyContract.json" // ef-test #115 | "OutOfGasContractCreation.json" // ef-test #116 | "CallContractToCreateContractAndCallItOOG.json" // ef-test #117 + | "TestContractSuicide.json" // ef-test #132 + | "TestCryptographicFunctions.json" // ef-test #133 + | "RecursiveCreateContracts.json" // ef-test #134 + | "ByZero.json" //ef-test #135 + | "ContractInheritance.json" // ef-test #136 + | "CallLowLevelCreatesSolidity.json" // ef-test #137 + | "CreateContractFromMethod.json" // ef-test #138 + | "TestStoreGasPrices.json" // ef-test #139 + | "TestContractInteraction.json" // ef-test #140 + | "RecursiveCreateContractsCreate4Contracts.json" // ef-test #141 | "undefinedOpcodeFirstByte.json" // ef-tests #121 | "measureGas.json" // ef-tests #122 | "badOpcodes.json" // ef-tests #123 diff --git a/crates/ef-testing/tests/tests.rs b/crates/ef-testing/tests/tests.rs index e3f3ab8d..b44cf78c 100644 --- a/crates/ef-testing/tests/tests.rs +++ b/crates/ef-testing/tests/tests.rs @@ -66,6 +66,7 @@ mod blockchain_tests { blockchain_tests!(vm_tests, VMTests); blockchain_tests!(memory_tests, stMemoryTest); blockchain_tests!(init_code_test, stInitCodeTest); + blockchain_tests!(st_solidity_test, stSolidityTest); blockchain_tests!(st_log_tests, stLogTests); blockchain_tests!(st_bad_opcode, stBadOpcode); }