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

integration: add test for NoRefunds #309

Merged
merged 2 commits into from
Dec 23, 2024
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
Binary file not shown.
6 changes: 3 additions & 3 deletions integration/run_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@
tests_not_compared = [
"mainnet/eth_syncing/test_01.json", # different stages

"mainnet/debug_traceCall/test_02", # must be complete implementaion on latest

"mainnet/debug_traceBlockByHash/test_05", # diff on 1 gas
"mainnet/debug_traceBlockByHash/test_08", # diff on 3 gasCost
"mainnet/debug_traceBlockByHash/test_09", # diff on 60 gasCost, 8473 gas, 16 stack
Expand All @@ -45,6 +43,7 @@
"mainnet/debug_traceBlockByNumber/test_10", # diff on 42 gasCost, 12358 gas, 8 stack
"mainnet/debug_traceBlockByNumber/test_11", # diff on 1 gas and 1 gasCost
"mainnet/debug_traceBlockByNumber/test_12", # diff on 1 gas
"mainnet/debug_traceBlockByNumber/test_21", # diff on 42 gasCost, 12358 gas, 8 stack

"mainnet/debug_traceCallMany/test_07", # diff on many storage and many stack entries
"mainnet/debug_traceCallMany/test_09", # diff on 2 storage and 28 stack entries
Expand Down Expand Up @@ -814,7 +813,8 @@ def main(argv) -> int:
if config.start_test == "" or test_number_in_any_loop >= int(config.start_test):
if config.display_only_fail == 0 and config.req_test_number != "":
file = json_test_full_name.ljust(60)
print(f"{test_number_in_any_loop:04d}. {file} Skipped")
curr_tt = transport_type.ljust(15)
print(f"{test_number_in_any_loop:04d}. {curr_tt}::{file} Skipped")
tests_not_executed = tests_not_executed + 1
else:
# runs all tests or
Expand Down