summaryrefslogtreecommitdiffhomepage
path: root/fuzzers_test.sh
diff options
context:
space:
mode:
Diffstat (limited to 'fuzzers_test.sh')
-rwxr-xr-xfuzzers_test.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/fuzzers_test.sh b/fuzzers_test.sh
index b27e0e2..a190acc 100755
--- a/fuzzers_test.sh
+++ b/fuzzers_test.sh
@@ -7,7 +7,8 @@ result=0
test -d fuzzcorpus && hg --repository fuzzcorpus/ pull || hg clone https://hg.ucc.asn.au/dropbear-fuzzcorpus fuzzcorpus || exit 1
for f in `make list-fuzz-targets`; do
# use xargs to split the too-long argument list
- echo fuzzcorpus/$f/* | xargs -n 1000 ./$f || result=1
+ # -q quiet because travis has a logfile limit
+ echo fuzzcorpus/$f/* | xargs -n 1000 ./$f -q || result=1
done
exit $result