Skip to content

Commit 0244aa0

Browse files
committed
Reduce CI fuzz iterations as we're now timing out
I think github has slowed down the runners so now our fuzz tests are timing out. Here we just reduce iteration count a bit.
1 parent 8b3f6cc commit 0244aa0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

fuzz/ci-fuzz.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ for TARGET in src/bin/*.rs; do
2525
FILE="${FILENAME%.*}"
2626
HFUZZ_RUN_ARGS="--exit_upon_crash -v -n2"
2727
if [ "$FILE" = "chanmon_consistency_target" ]; then
28-
HFUZZ_RUN_ARGS="$HFUZZ_RUN_ARGS -F 64 -N100000"
28+
HFUZZ_RUN_ARGS="$HFUZZ_RUN_ARGS -F 64 -N10000"
2929
elif [ "$FILE" = "full_stack_target" ]; then
30-
HFUZZ_RUN_ARGS="$HFUZZ_RUN_ARGS -t0 -N1000000"
30+
HFUZZ_RUN_ARGS="$HFUZZ_RUN_ARGS -t0 -N100000"
3131
else
32-
HFUZZ_RUN_ARGS="$HFUZZ_RUN_ARGS -N1000000"
32+
HFUZZ_RUN_ARGS="$HFUZZ_RUN_ARGS -N500000"
3333
fi
3434
export HFUZZ_RUN_ARGS
3535
cargo --color always hfuzz run $FILE

0 commit comments

Comments
 (0)