dropbear/fuzzers_test.sh

13 lines
296 B
Bash
Raw Normal View History

2018-03-01 14:54:57 +00:00
#!/bin/sh
# runs fuzz corpus with standalone fuzzers
result=0
test -d fuzzcorpus && hg --repository fuzzcorpus/ pull || hg clone https://secure.ucc.asn.au/hg/dropbear-fuzzcorpus fuzzcorpus || exit 1
2018-03-01 14:54:57 +00:00
for f in `make list-fuzz-targets`; do
./$f fuzzcorpus/$f/* || result=1
done
exit $result