From f26f4d479e6397f29a5f75590e124b430b81b54a Mon Sep 17 00:00:00 2001 From: khaeljy Date: Sat, 30 Sep 2023 08:43:44 +0000 Subject: [PATCH] add `stSStoreTest` testsuite --- blockchain-tests-skip.yml | 27 +++++++++++++++++++++++++++ crates/ef-testing/tests/tests.rs | 2 +- 2 files changed, 28 insertions(+), 1 deletion(-) diff --git a/blockchain-tests-skip.yml b/blockchain-tests-skip.yml index 72af20e3..f4010918 100644 --- a/blockchain-tests-skip.yml +++ b/blockchain-tests-skip.yml @@ -319,6 +319,33 @@ filename: - NonZeroValue_SUICIDE.json # ef-tests #361 - RETURN_Bounds.json # ef-tests #366 - FillStack.json # ef-tests #367 + - InitCollision.json # ef-tests #408 + - sstoreGas.json # ef-tests #409 + - InitCollisionNonZeroNonce.json # ef-tests #410 + - sstore_0to0.json # ef-tests #410 + - sstore_0to0to0.json # ef-tests #410 + - sstore_0to0toX.json # ef-tests #410 + - sstore_0toX.json # ef-tests #410 + - sstore_0toXto0.json # ef-tests #410 + - sstore_0toXto0toX.json # ef-tests #410 + - sstore_0toXtoX.json # ef-tests #410 + - sstore_0toXtoY.json # ef-tests #410 + - sstore_changeFromExternalCallInInitCode.json # ef-tests #410 + - sstore_gasLeft.json # ef-tests #410 + - sstore_Xto0.json # ef-tests #410 + - sstore_Xto0to0.json # ef-tests #410 + - sstore_Xto0toX.json # ef-tests #410 + - sstore_Xto0toXto0.json # ef-tests #410 + - sstore_Xto0toY.json # ef-tests #410 + - sstore_XtoX.json # ef-tests #410 + - sstore_XtoXto0.json # ef-tests #410 + - sstore_XtoXtoX.json # ef-tests #410 + - sstore_XtoXtoY.json # ef-tests #410 + - sstore_XtoY.json # ef-tests #410 + - sstore_XtoYto0.json # ef-tests #410 + - sstore_XtoYtoX.json # ef-tests #410 + - sstore_XtoYtoY.json # ef-tests #410 + - sstore_XtoYtoZ.json # ef-tests #410 # List of file names regex to be skipped regex: diff --git a/crates/ef-testing/tests/tests.rs b/crates/ef-testing/tests/tests.rs index 6efd4a52..aac40af0 100644 --- a/crates/ef-testing/tests/tests.rs +++ b/crates/ef-testing/tests/tests.rs @@ -113,7 +113,7 @@ mod blockchain_tests { blockchain_tests!(st_return_data_test, stReturnDataTest); blockchain_tests!(st_revert_test, stRevertTest); blockchain_tests!(st_sload_test, stSLoadTest); - // blockchain_tests!(st_sstore_test, stSStoreTest); // 27 failing tests + blockchain_tests!(st_sstore_test, stSStoreTest); // blockchain_tests!(st_self_balance, stSelfBalance); // 3 failing tests // blockchain_tests!(st_shift, stShift); // 2 failing tests blockchain_tests!(st_solidity_test, stSolidityTest);