Files
nanoreth/.github/assets/hive/run_simulator.sh
2025-02-04 16:46:31 +00:00

39 lines
789 B
Bash
Executable File

#!/usr/bin/env bash
# set -x
cd hivetests/
sim="${1}"
limit="${2}"
run_hive() {
hive --sim "${sim}" --sim.limit "${limit}" --sim.parallelism 8 --client reth 2>&1 | tee /tmp/log || true
}
check_log() {
tail -n 1 /tmp/log | sed -r 's/\x1B\[[0-9;]*[mK]//g'
}
attempt=0
max_attempts=5
while [ $attempt -lt $max_attempts ]; do
run_hive
# Check if no tests were run. sed removes ansi colors
if check_log | grep -q "suites=0"; then
echo "no tests were run, retrying in 10 seconds"
sleep 10
attempt=$((attempt + 1))
continue
fi
# Check the last line of the log for "finished", "tests failed", or "test failed"
if check_log | grep -Eq "(finished|tests? failed)"; then
exit 0
else
exit 1
fi
done
exit 1