From 864368b0250ba13c5ee421e078b2501085f37fbf Mon Sep 17 00:00:00 2001 From: Elias Tazartes Date: Thu, 21 Sep 2023 09:27:10 +0700 Subject: [PATCH] gc -m "feat: add stSolidityTest test suite" --- crates/ef-testing/src/models/case.rs | 10 ++++++++++ crates/ef-testing/tests/tests.rs | 1 + 2 files changed, 11 insertions(+) diff --git a/crates/ef-testing/src/models/case.rs b/crates/ef-testing/src/models/case.rs index 31ff1d2d..d2b7c4a8 100644 --- a/crates/ef-testing/src/models/case.rs +++ b/crates/ef-testing/src/models/case.rs @@ -107,6 +107,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 ) } diff --git a/crates/ef-testing/tests/tests.rs b/crates/ef-testing/tests/tests.rs index bf8104c7..f04124e4 100644 --- a/crates/ef-testing/tests/tests.rs +++ b/crates/ef-testing/tests/tests.rs @@ -66,4 +66,5 @@ 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); }