From c200815e1583045e8f3bab6cbf3a816f1a5f76da Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sat, 20 Nov 2021 19:48:39 -0500 Subject: bump up the fuzz timeout --- bin/fuzz | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/fuzz b/bin/fuzz index 001406d..64412e2 100755 --- a/bin/fuzz +++ b/bin/fuzz @@ -7,8 +7,8 @@ cd fuzz cargo afl build --release mkdir -p out -tmux new-window cargo afl fuzz -i in -o out -t 10000 -M main_fuzzer target/release/fuzz +tmux new-window cargo afl fuzz -i in -o out -t 30000 -M main_fuzzer target/release/fuzz sleep 5 for i in $(seq 2 "$ncpu"); do - tmux new-window cargo afl fuzz -i in -o out -t 10000 -S "secondary_fuzzer_$i" target/release/fuzz + tmux new-window cargo afl fuzz -i in -o out -t 30000 -S "secondary_fuzzer_$i" target/release/fuzz done -- cgit v1.2.3-54-g00ecf