Skip to content

Commit 34fa21b

Browse files
committed
Reduce CI fuzz iterations as we're now timing out
When we made `test_node_counter_consistency` more aggressively run, our `process_network_graph` fuzzer got materially slower, resulting in consistent fuzz CI job timeouts. Thus, here, we reduce the iteration count on `process_network_graph` (and `chanmon_consistency`) to get our fuzz job passing again. We also increase `full_stack_target` iterations because, in practice, the CI fuzzer never finds its way into interesting paths that take a long time.
1 parent 2e435de commit 34fa21b

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,9 +25,9 @@ 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"
29-
elif [ "$FILE" = "full_stack_target" ]; then
30-
HFUZZ_RUN_ARGS="$HFUZZ_RUN_ARGS -t0 -N1000000"
28+
HFUZZ_RUN_ARGS="$HFUZZ_RUN_ARGS -F 64 -N50000"
29+
elif [ "$FILE" = "process_network_graph_target" ]; then
30+
HFUZZ_RUN_ARGS="$HFUZZ_RUN_ARGS -N50000"
3131
else
3232
HFUZZ_RUN_ARGS="$HFUZZ_RUN_ARGS -N1000000"
3333
fi

0 commit comments

Comments
 (0)