Mercurial > dropbear
annotate fuzzers_test.sh @ 1723:5386011b740d
Disable toom and karatsuba for new libtommath
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Thu, 18 Jun 2020 19:12:07 +0800 |
parents | f52919ffd3b1 |
children | 8b27de2c92ee |
rev | line source |
---|---|
1566 | 1 #!/bin/sh |
2 | |
3 # runs fuzz corpus with standalone fuzzers | |
4 | |
5 result=0 | |
6 | |
1655
f52919ffd3b1
update ltm to 1.1.0 and enable FIPS 186.4 compliant key-generation (#79)
Steffen Jaeckel <s_jaeckel@gmx.de>
parents:
1566
diff
changeset
|
7 test -d fuzzcorpus && hg --repository fuzzcorpus/ pull || hg clone https://secure.ucc.asn.au/hg/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 |