File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ stop-localnet-silent:
66
66
@kurtosis enclave stop $(ENCLAVE ) > /dev/null 2>&1 || true
67
67
@kurtosis enclave rm $(ENCLAVE ) --force > /dev/null 2>&1 || true
68
68
69
- HIVE_REVISION := b0b0f98bd24676239722e3aa7885e29ef856d804
69
+ HIVE_REVISION := feb4333db7fe9f6dc161326ebb11957d4306d2f9
70
70
# Shallow clones can't specify a single revision, but at least we avoid working
71
71
# the whole history by making it shallow since a given date (one day before our
72
72
# target revision).
@@ -117,6 +117,16 @@ run-hive-debug: build-image setup-hive ## 🐞 Run Hive testing suite in debug m
117
117
clean-hive-logs : # # 🧹 Clean Hive logs
118
118
rm -rf ./hive/workspace/logs
119
119
120
+ SIM_PARALLELISM := 48
121
+ EVM_BACKEND := revm
122
+ # `make run-hive-report SIM_PARALLELISM=24 EVM_BACKEND="levm"`
123
+ run-hive-report : build-image setup-hive clean-hive-logs # # 🐝 Run Hive and Build report
124
+ cd hive && ./hive --ethrex.flags " --evm $( EVM_BACKEND) " --sim ethereum/rpc-compat --client ethrex --sim.limit " $( TEST_PATTERN) " --sim.parallelism $(SIM_PARALLELISM ) || exit 0
125
+ cd hive && ./hive --ethrex.flags " --evm $( EVM_BACKEND) " --sim devp2p --client ethrex --sim.limit " $( TEST_PATTERN) " --sim.parallelism $(SIM_PARALLELISM ) || exit 0
126
+ cd hive && ./hive --ethrex.flags " --evm $( EVM_BACKEND) " --sim ethereum/engine --client ethrex --sim.limit " $( TEST_PATTERN) " --sim.parallelism $(SIM_PARALLELISM ) || exit 0
127
+ cd hive && ./hive --ethrex.flags " --evm $( EVM_BACKEND) " --sim ethereum/sync --client ethrex --sim.limit " $( TEST_PATTERN) " --sim.parallelism $(SIM_PARALLELISM ) || exit 0
128
+ cargo run --release -p hive_report
129
+
120
130
loc :
121
131
cargo run -p loc
122
132
You can’t perform that action at this time.
0 commit comments