Mercurial > dropbear
annotate fuzzers_test.sh @ 1753:7c0fcd19e492
Increase MAX_PROPOSED_ALGO to 50, warn if exceeded
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Fri, 23 Oct 2020 20:53:58 +0800 |
parents | 8b27de2c92ee |
children | 42daf3044618 |
rev | line source |
---|---|
1566 | 1 #!/bin/sh |
2 | |
3 # runs fuzz corpus with standalone fuzzers | |
4 | |
5 result=0 | |
6 | |
1737
8b27de2c92ee
Change secure.ucc.asn.au/hg to hg.ucc.asn.au
Matt Johnston <matt@ucc.asn.au>
parents:
1655
diff
changeset
|
7 test -d fuzzcorpus && hg --repository fuzzcorpus/ pull || hg clone https://hg.ucc.asn.au/dropbear-fuzzcorpus fuzzcorpus || exit 1 |
1566 | 8 for f in `make list-fuzz-targets`; do |
9 ./$f fuzzcorpus/$f/* || result=1 | |
10 done | |
11 | |
12 exit $result |