aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-11-20 19:48:39 -0500
committerJesse Luehrs <doy@tozt.net>2021-11-20 19:48:39 -0500
commitc200815e1583045e8f3bab6cbf3a816f1a5f76da (patch)
tree7220e008630689c6c5c6ea0cb968e4945d5339f1
parent4789c61e5e16d0a25630c560e613245da3e7ff90 (diff)
downloadvt100-rust-c200815e1583045e8f3bab6cbf3a816f1a5f76da.tar.gz
vt100-rust-c200815e1583045e8f3bab6cbf3a816f1a5f76da.zip
bump up the fuzz timeout
-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