aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbin/fuzz4
1 files 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