Skip to content

Commit dd835d4

Browse files
committed
Reduce CI fuzz iterations
In b1c6d52 we reduced the number of fuzz iterations we did in CI. This brought us back within the passing envelope, but sadly we're now falling behind in jobs during the day (and barely catching up at night). Here we reduce the fuzz iteration count in CI even more, in the hopes that it helps.
1 parent 217a5b0 commit dd835d4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

fuzz/ci-fuzz.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ for TARGET in src/bin/*.rs; do
3434
FILE="${FILENAME%.*}"
3535
HFUZZ_RUN_ARGS="--exit_upon_crash -v -n2"
3636
if [ "$FILE" = "chanmon_consistency_target" ]; then
37-
HFUZZ_RUN_ARGS="$HFUZZ_RUN_ARGS -F 64 -N5000"
37+
HFUZZ_RUN_ARGS="$HFUZZ_RUN_ARGS -F 64 -N1000"
3838
elif [ "$FILE" = "process_network_graph_target" -o "$FILE" = "full_stack_target" -o "$FILE" = "router_target" ]; then
39-
HFUZZ_RUN_ARGS="$HFUZZ_RUN_ARGS -N50000"
39+
HFUZZ_RUN_ARGS="$HFUZZ_RUN_ARGS -N10000"
4040
elif [ "$FILE" = "indexedmap_target" ]; then
41-
HFUZZ_RUN_ARGS="$HFUZZ_RUN_ARGS -N500000"
41+
HFUZZ_RUN_ARGS="$HFUZZ_RUN_ARGS -N100000"
4242
else
43-
HFUZZ_RUN_ARGS="$HFUZZ_RUN_ARGS -N2500000"
43+
HFUZZ_RUN_ARGS="$HFUZZ_RUN_ARGS -N1000000"
4444
fi
4545
export HFUZZ_RUN_ARGS
4646
cargo --color always hfuzz run $FILE

0 commit comments

Comments
 (0)