comparison fuzzers_test.sh @ 1655:f52919ffd3b1

update ltm to 1.1.0 and enable FIPS 186.4 compliant key-generation (#79) * make key-generation compliant to FIPS 186.4 * fix includes in tommath_class.h * update fuzzcorpus instead of error-out * fixup fuzzing make-targets * update Makefile.in * apply necessary patches to ltm sources * clean-up not required ltm files * update to vanilla ltm 1.1.0 this already only contains the required files * remove set/get double
author Steffen Jaeckel <s_jaeckel@gmx.de>
date Mon, 16 Sep 2019 15:50:38 +0200
parents 3fc0e9a0978b
children 8b27de2c92ee
comparison
equal deleted inserted replaced
1654:cc0fc5131c5c 1655:f52919ffd3b1
2 2
3 # runs fuzz corpus with standalone fuzzers 3 # runs fuzz corpus with standalone fuzzers
4 4
5 result=0 5 result=0
6 6
7 hg clone https://secure.ucc.asn.au/hg/dropbear-fuzzcorpus fuzzcorpus || exit 1 7 test -d fuzzcorpus && hg --repository fuzzcorpus/ pull || hg clone https://secure.ucc.asn.au/hg/dropbear-fuzzcorpus fuzzcorpus || exit 1
8 for f in `make list-fuzz-targets`; do 8 for f in `make list-fuzz-targets`; do
9 ./$f fuzzcorpus/$f/* || result=1 9 ./$f fuzzcorpus/$f/* || result=1
10 done 10 done
11 11
12 exit $result 12 exit $result