From a1819f76298620ca7cdf78acf5d27ffc10ebbd10 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Fri, 19 Nov 2021 00:12:59 +0000 Subject: let the main node start up before launching secondaries --- bin/fuzz | 1 + 1 file changed, 1 insertion(+) 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 -- cgit v1.2.3-54-g00ecf