mirror of
https://github.com/clearml/dropbear
synced 2025-01-31 02:46:58 +00:00
615ed4e46a
* 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
13 lines
296 B
Bash
Executable File
13 lines
296 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# runs fuzz corpus with standalone fuzzers
|
|
|
|
result=0
|
|
|
|
test -d fuzzcorpus && hg --repository fuzzcorpus/ pull || 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
|