Mercurial > dropbear
annotate fuzzers_test.sh @ 1709:04155ce30759
Sync curve25519 license
author | Vladislav Grishenko <themiron@mail.ru> |
---|---|
date | Sun, 31 May 2020 21:10:43 +0500 |
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 |