Skip to content

Commit 764e6e7

Browse files
committed
Disable timeout for full_stack_target runs in CI
It seems we've recently been seeing sporadic long-running full_stack_target cases when running honggfuzz in CI. These shouldn't be killed (as its possible they hit an error or a deadlock, especially since the longest-running tests probably have the most coverage).
1 parent 2e997d7 commit 764e6e7

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

fuzz/ci-fuzz.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ for TARGET in src/bin/*.rs; do
2121
HFUZZ_RUN_ARGS="--exit_upon_crash -v -n2"
2222
if [ "$FILE" = "chanmon_consistency_target" ]; then
2323
HFUZZ_RUN_ARGS="$HFUZZ_RUN_ARGS -F 64 -N100000"
24+
elif [ "$FILE" = "full_stack_target" ]; then
25+
HFUZZ_RUN_ARGS="$HFUZZ_RUN_ARGS -t0 -N1000000"
2426
else
2527
HFUZZ_RUN_ARGS="$HFUZZ_RUN_ARGS -N1000000"
2628
fi

0 commit comments

Comments
 (0)