Mercurial > dropbear
view fuzzers_test.sh @ 1849:d34f50b7b9fd
Add configure --enable-werror argument
This should be used instead of putting -Werror in CFLAGS
before configure, as -Werror interferes with conftests.
Update github actions to use that.
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Tue, 19 Oct 2021 12:16:20 +0800 |
parents | fd00aeff38fd |
children |
line wrap: on
line source
#!/bin/sh # runs fuzz corpus with standalone fuzzers 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 # -q quiet because travis has a logfile limit echo fuzzcorpus/$f/* | xargs -n 1000 ./$f -q || result=1 done exit $result