-
Notifications
You must be signed in to change notification settings - Fork 810
/
run_blocktests.sh
executable file
·109 lines (89 loc) · 3.37 KB
/
run_blocktests.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
#!/bin/bash
set -e
# mode options are list, run, or all
block_tests_path=$1
runner_index=$2
runner_total=$3
if [ -z "$runner_index" ]; then
runner_index=0
runner_total=1
fi
echo $mode
echo $block_tests_path
# Define an array of test directories to run
declare -a test_path_run_list=(
# run all valid block tests
"ValidBlocks/"
# run only certain invalid block tests
"InvalidBlocks/bcEIP1559/"
"InvalidBlocks/bcStateTests/"
)
# Define an array of tests to skip
declare -a test_name_skip_list=(
# valid block tests
"DelegateCallSpam" # passes, but takes super long
"blockhashTests" # failing
"blockhashNonConstArg" # failing
"BLOCKHASH_Bounds" # failing
"logRevert" # uses an invalid opcode (0xBA)
"blockWithAllTransactionTypes" # recently started failing
"tipInsideBlock" # failing after turning on eip-1559 and not burning base fee
"multimpleBalanceInstruction" # failing after turning on eip-1559 and not burning base fee
"tips" # failing after turning on eip-1559 and not burning base fee
"burnVerify" # failing after turning on eip-1559 and not burning base fee
"emptyPostTransfer" # failing after turning on eip-1559 and not burning base fee
"multimpleBalanceInstruction" # failing from 150% max gas refund change
"burnVerify" # failing from 150% max gas refund change
"refundReset" # failing from 150% max gas refund change
# invalid block tests - state tests
"gasLimitTooHigh" # block header gas limit doesn't apply to us
"transactionFromSelfDestructedContract" # failing
# InvaldBlockTests/bcEIP1559
"badUncles" # reorgs don't apply to us
"checkGasLimit" # not sure what issue is
)
# list out all paths to json files starting from the block_tests_dir
block_tests=$(find "$block_tests_path" -name "*.json" | sort)
i=0
# for each json file, run the block test
for test_path in $block_tests; do
test_name=$(basename "$test_path" .json)
match_found=false
# Iterate through the test_path_run_list to check for a match
for run_path in "${test_path_run_list[@]}"; do
if [[ "$test_path" == *"$run_path"* ]]; then
match_found=true
break
fi
done
# Skip the test if no match is found
if [ "$match_found" = false ]; then
continue
fi
echo "test file: $test_path"
echo "test dir: $test_path"
# Check if the test name is in the skip list
if printf '%s\n' "${test_name_skip_list[@]}" | grep -qx "$test_name"; then
echo "Skipping test in skip list: $test_path"
continue
fi
# Check if "${test_name}_Cancun" is not in the test file
if ! grep -q "${test_name}_Cancun" "$test_path"; then
echo "Skipping test due to missing Cancun tag: $test_path"
continue
fi
if [ $((i % runner_total)) -ne $runner_index ]; then
i=$((i+1))
runner_id=$((i % runner_total))
echo "Skipping test not in runner index: $test_path, runner index: $runner_id"
continue
fi
i=$((i+1))
echo -e "\n*********************************************************\n"
echo "Running block test: $test_path"
echo "test name: ${test_name}_Cancun"
echo -e "\n*********************************************************\n"
rm -r ~/.sei || true
NO_RUN=1 ./scripts/initialize_local_chain.sh
seid blocktest --block-test $test_path --test-name "${test_name}_Cancun"
done