summaryrefslogtreecommitdiffstats
path: root/fuzz/test-fuzzers.sh
blob: b0a8367e55f11c248310497b84b54a2638e3f441 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/sh

CURDIR=`pwd`
FUZZDIR=`dirname $0`

cd ${FUZZDIR}

if ! test -x xplist_fuzzer || ! test -x bplist_fuzzer; then
	echo "ERROR: you need to build the fuzzers first."
	cd ${CURDIR}
	exit 1
fi

if ! test -d xplist-input || ! test -d bplist-input; then
	echo "ERROR: fuzzer corpora directories are not present. Did you run init-fuzzers.sh ?"
	cd ${CURDIR}
	exit 1
fi

echo "### TESTING xplist_fuzzer ###"
if ! ./xplist_fuzzer xplist-input -dict=xplist.dict -max_len=65536 -runs=10000; then
	cd ${CURDIR}
	exit 1
fi

echo "### TESTING bplist_fuzzer ###"
if ! ./bplist_fuzzer bplist-input -dict=bplist.dict -max_len=4096 -runs=10000; then
	cd ${CURDIR}
	exit 1
fi

cd ${CURDIR}
exit 0