From 2fecc5c03417fbb197d373691fc825d1f9ec3299 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Mon, 29 May 2017 17:22:14 +0200 Subject: fuzz: Add appropriate -max_len to fuzzers for testing --- fuzz/test-fuzzers.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fuzz/test-fuzzers.sh b/fuzz/test-fuzzers.sh index 5c758c4..b0a8367 100755 --- a/fuzz/test-fuzzers.sh +++ b/fuzz/test-fuzzers.sh @@ -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 -- cgit v1.1-32-gdbae