diff --git a/crates/ef-testing/src/models/case.rs b/crates/ef-testing/src/models/case.rs index 4770b70d..31ff1d2d 100644 --- a/crates/ef-testing/src/models/case.rs +++ b/crates/ef-testing/src/models/case.rs @@ -98,6 +98,15 @@ impl BlockchainTestCase { | "buffer.json" // ef-tests #50 | "oog.json" // ef-tests #49 | "sloadGasCost.json" // ef-tests #78 + | "TransactionCreateStopInInitcode.json" // ef-tests #108 + | "CallRecursiveContract.json" // ef-tests #109 + | "CallContractToCreateContractWhichWouldCreateContractInInitCode.json" // ef-tests #110 + | "CallContractToCreateContractOOGBonusGas.json" // ef-tests #111 + | "OutOfGasPrefundedContractCreation.json" // ef-test #112 + | "CallContractToCreateContractWhichWouldCreateContractIfCalled.json" // ef-test #114 + | "CallTheContractToCreateEmptyContract.json" // ef-test #115 + | "OutOfGasContractCreation.json" // ef-test #116 + | "CallContractToCreateContractAndCallItOOG.json" // ef-test #117 ) } diff --git a/crates/ef-testing/tests/tests.rs b/crates/ef-testing/tests/tests.rs index be1fb28a..bf8104c7 100644 --- a/crates/ef-testing/tests/tests.rs +++ b/crates/ef-testing/tests/tests.rs @@ -65,4 +65,5 @@ mod blockchain_tests { blockchain_tests!(st_sload, stSLoadTest); blockchain_tests!(vm_tests, VMTests); blockchain_tests!(memory_tests, stMemoryTest); + blockchain_tests!(init_code_test, stInitCodeTest); }