diff options
author | Nikias Bassen | 2022-01-25 03:45:30 +0100 |
---|---|---|
committer | Nikias Bassen | 2022-01-25 03:45:30 +0100 |
commit | c7b005bc7864b6109115d4278872152208e78c23 (patch) | |
tree | 73b635fea8d49521bfff3815a0fc1566d3185692 /fuzz/test-fuzzers.sh | |
parent | 323009bfd003ff1540967b7b67efebab1ee8693d (diff) | |
download | libplist-c7b005bc7864b6109115d4278872152208e78c23.tar.gz libplist-c7b005bc7864b6109115d4278872152208e78c23.tar.bz2 |
fuzz: Add fuzzer for JSON format
Diffstat (limited to 'fuzz/test-fuzzers.sh')
-rwxr-xr-x | fuzz/test-fuzzers.sh | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/fuzz/test-fuzzers.sh b/fuzz/test-fuzzers.sh index b0a8367..40be74f 100755 --- a/fuzz/test-fuzzers.sh +++ b/fuzz/test-fuzzers.sh @@ -5,13 +5,13 @@ FUZZDIR=`dirname $0` cd ${FUZZDIR} -if ! test -x xplist_fuzzer || ! test -x bplist_fuzzer; then +if ! test -x xplist_fuzzer || ! test -x bplist_fuzzer || ! test -x jplist_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 +if ! test -d xplist-input || ! test -d bplist-input || ! test -d jplist-input; then echo "ERROR: fuzzer corpora directories are not present. Did you run init-fuzzers.sh ?" cd ${CURDIR} exit 1 @@ -29,5 +29,11 @@ if ! ./bplist_fuzzer bplist-input -dict=bplist.dict -max_len=4096 -runs=10000; t exit 1 fi +echo "### TESTING jplist_fuzzer ###" +if ! ./jplist_fuzzer jplist-input -dict=jplist.dict -max_len=65536 -runs=10000; then + cd ${CURDIR} + exit 1 +fi + cd ${CURDIR} exit 0 |