summaryrefslogtreecommitdiff
path: root/fuzzers_test.sh
blob: 1618ee1416879374fee81a96344abce09faeca3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

# runs fuzz corpus with standalone fuzzers

result=0

hg clone https://secure.ucc.asn.au/hg/dropbear-fuzzcorpus fuzzcorpus || exit 1
for f in `make list-fuzz-targets`; do
    ./$f fuzzcorpus/$f/* || result=1
done

exit $result