Commit 2fecc5c0 authored by Nikias Bassen's avatar Nikias Bassen

fuzz: Add appropriate -max_len to fuzzers for testing

parent 0118009b
......@@ -18,13 +18,13 @@ if ! test -d xplist-input || ! test -d bplist-input; then
fi
echo "### TESTING xplist_fuzzer ###"
if ! ./xplist_fuzzer xplist-input -dict=xplist.dict -runs=10000; then
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 -runs=10000; then
if ! ./bplist_fuzzer bplist-input -dict=bplist.dict -max_len=4096 -runs=10000; then
cd ${CURDIR}
exit 1
fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment