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 stTimeConsuming testsuite #441

Merged
merged 11 commits into from
Oct 4, 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
15 changes: 15 additions & 0 deletions blockchain-tests-skip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -965,6 +965,21 @@ filename:
- delegatecallAtTransition.json # ef-test #433
- delegatecallAfterTransition.json # ef-test #433
- delegatecallBeforeTransition.json # ef-test #433
stTimeConsuming:
- CALLBlake2f_MaxRounds.json # ef-test #440
- sstore_combinations_initial00.json # ef-test #440
- sstore_combinations_initial00_2.json # ef-test #440
- sstore_combinations_initial01.json # ef-test #440
- sstore_combinations_initial01_2.json # ef-test #440
- sstore_combinations_initial10.json # ef-test #440
- sstore_combinations_initial10_2.json # ef-test #440
- sstore_combinations_initial11.json # ef-test #440
- sstore_combinations_initial11_2.json # ef-test #440
- sstore_combinations_initial20.json # ef-test #440
- sstore_combinations_initial20_2.json # ef-test #440
- sstore_combinations_initial21.json # ef-test #440
- sstore_combinations_initial21_2.json # ef-test #440
- static_Call50000_sha256.json # ef-test #440

# List of file names regex to be skipped
# The first level corresponds to the directory, the second to the list of file names regex to ignore.
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 @@ -122,7 +122,7 @@ mod blockchain_tests {
blockchain_tests!(st_static_call, stStaticCall);
blockchain_tests!(st_static_flag_enabled, stStaticFlagEnabled);
blockchain_tests!(st_system_operations_test, stSystemOperationsTest);
// blockchain_tests!(st_time_consuming, stTimeConsuming); // 14 failing tests
blockchain_tests!(st_time_consuming, stTimeConsuming);
// blockchain_tests!(st_transaction_test, stTransactionTest); // failing due to: invalid length 62, expected a (both 0x-prefixed or not) hex string or byte array containing betwee
blockchain_tests!(st_transition_test, stTransitionTest);
blockchain_tests!(st_wallet_test, stWalletTest);
Expand Down
Loading