Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add stNonZeroCallsTest testsuite #364

Merged
merged 2 commits into from
Sep 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions blockchain-tests-skip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,19 @@ filename:
- createContractViaContract.json # ef-tests #354
- createContractViaContractOOGInitCode.json # ef-tests #354
- createContractViaTransactionCost53000.json # ef-tests #354
- NonZeroValue_CALL.json # ef-tests #360
- NonZeroValue_CALLCODE.json # ef-tests #360
- NonZeroValue_CALLCODE_ToEmpty.json # ef-tests #360
- NonZeroValue_CALLCODE_ToNonNonZeroBalance.json # ef-tests #360
- NonZeroValue_CALLCODE_ToOneStorageKey.json # ef-tests #360
- NonZeroValue_CALL_ToEmpty.json # ef-tests #360
- NonZeroValue_CALL_ToNonNonZeroBalance.json # ef-tests #360
- NonZeroValue_CALL_ToOneStorageKey.json # ef-tests #360
- NonZeroValue_DELEGATECALL.json # ef-tests #360
- NonZeroValue_DELEGATECALL_ToEmpty.json # ef-tests #360
- NonZeroValue_DELEGATECALL_ToNonNonZeroBalance.json # ef-tests #360
- NonZeroValue_DELEGATECALL_ToOneStorageKey.json # ef-tests #360
- NonZeroValue_SUICIDE.json # ef-tests #361

# List of file names regex to be skipped
regex:
Expand Down
2 changes: 1 addition & 1 deletion crates/ef-testing/tests/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ mod blockchain_tests {
// blockchain_tests!(st_mem_expanding_eip150_calls, stMemExpandingEIP150Calls); // 7 failing tests
// blockchain_tests!(st_memory_stress_test, stMemoryStressTest); // 2 failing tests
blockchain_tests!(st_memory_test, stMemoryTest);
// blockchain_tests!(st_non_zero_calls_test, stNonZeroCallsTest); // 13 failing tests
blockchain_tests!(st_non_zero_calls_test, stNonZeroCallsTest);
// blockchain_tests!(st_pre_compiled_contracts, stPreCompiledContracts); // 8 failing tests
// blockchain_tests!(st_pre_compiled_contracts2, stPreCompiledContracts2); // 97 failing tests
// blockchain_tests!(st_quadratic_complexity_test, stQuadraticComplexityTest); // 7 failing tests
Expand Down
Loading