aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-11-19 00:12:59 +0000
committerJesse Luehrs <doy@tozt.net>2021-11-19 00:12:59 +0000
commita1819f76298620ca7cdf78acf5d27ffc10ebbd10 (patch)
treef8e7e0ee640bd6a6e76f47f90c2c955e964211b2
parent86099e63ddd0fbc03800f1f8edaec91432e990b7 (diff)
downloadvt100-rust-a1819f76298620ca7cdf78acf5d27ffc10ebbd10.tar.gz
vt100-rust-a1819f76298620ca7cdf78acf5d27ffc10ebbd10.zip
let the main node start up before launching secondaries
-rwxr-xr-xbin/fuzz1
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/fuzz b/bin/fuzz
index 397a550..001406d 100755
--- a/bin/fuzz
+++ b/bin/fuzz
@@ -8,6 +8,7 @@ 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
+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
done