diff options
author | Matt Johnston <matt@ucc.asn.au> | 2021-03-07 21:26:34 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2021-03-07 21:26:34 +0800 |
commit | 1eb369272bc8a23acc52bf11f81ff39b0d04f95b (patch) | |
tree | 41f24a5140fe458c6fa217d988038a9d0358295a /fuzzers_test.sh | |
parent | c0ed29ea0290206d5f3f3a1c8ac5ac630f7f2f7c (diff) |
fuzz: add -q quiet argument for standalone fuzzers.
travis has a log length limit
Diffstat (limited to 'fuzzers_test.sh')
-rwxr-xr-x | fuzzers_test.sh | 3 |
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 |