1
0
mirror of http://galexander.org/git/simplesshd.git synced 2024-11-30 11:18:12 +00:00
simplesshd/dropbear/fuzzers_test.sh

13 lines
289 B
Bash
Raw Normal View History

2019-06-09 20:44:26 +00:00
#!/bin/sh
# runs fuzz corpus with standalone fuzzers
result=0
2020-12-28 21:40:37 +00:00
test -d fuzzcorpus && hg --repository fuzzcorpus/ pull || hg clone https://hg.ucc.asn.au/dropbear-fuzzcorpus fuzzcorpus || exit 1
2019-06-09 20:44:26 +00:00
for f in `make list-fuzz-targets`; do
./$f fuzzcorpus/$f/* || result=1
done
exit $result