Skip to content

Commit

Permalink
feat: add stInitCode tests to the runner
Browse files Browse the repository at this point in the history
  • Loading branch information
Harsh Bajpai authored and Harsh Bajpai committed Sep 20, 2023
1 parent 8118faa commit 7f440f0
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
9 changes: 9 additions & 0 deletions crates/ef-testing/src/models/case.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
}

Expand Down
7 changes: 4 additions & 3 deletions crates/ef-testing/tests/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ macro_rules! blockchain_tests {
mod blockchain_tests {
use super::*;

blockchain_tests!(st_sload, stSLoadTest);
blockchain_tests!(vm_tests, VMTests);
blockchain_tests!(memory_tests, stMemoryTest);
// blockchain_tests!(st_sload, stSLoadTest);
// blockchain_tests!(vm_tests, VMTests);
// blockchain_tests!(memory_tests, stMemoryTest);
blockchain_tests!(init_code_test, stInitCodeTest);
}

0 comments on commit 7f440f0

Please sign in to comment.