1
0
mirror of https://github.com/janet-lang/janet synced 2025-10-07 12:02:28 +00:00

Add afl fuzzing helpers.

This commit is contained in:
Andrew Chambers
2019-11-29 16:41:27 +13:00
parent 967a8b5a70
commit 4acc63e325
6 changed files with 88 additions and 0 deletions

36
tools/afl/fuzz.sh Normal file
View File

@@ -0,0 +1,36 @@
set -eux
NFUZZ=${NFUZZ:-1}
children=""
function finish {
for pid in $children
do
set +e
kill -s INT $pid
done
wait
}
trap finish EXIT
test -e ./tools/afl/$1_testcases
test -e ./tools/afl/$1_runner.janet
echo "running fuzz master..."
xterm -e \
"afl-fuzz -i ./tools/afl/$1_testcases -o ./fuzz_out/$1 -M Fuzz$1_0 -- ./build/janet ./tools/afl/$1_runner.janet @@" &
children="$! $children"
echo "waiting for afl to get started before starting secondary fuzzers"
sleep 10
NFUZZ=$((NFUZZ - 1))
for N in $(seq $NFUZZ)
do
xterm -e \
"afl-fuzz -i ./tools/afl/$1_testcases -o ./fuzz_out/$1 -S Fuzz$1_$N -- ./build/janet ./tools/afl/$1_runner.janet @@" &
children="$! $children"
done
echo "waiting for child terminals to exit."
wait