mirror of
http://galexander.org/git/simplesshd.git
synced 2024-11-15 19:48:56 +00:00
13 lines
238 B
Bash
Executable File
13 lines
238 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# runs fuzz corpus with standalone fuzzers
|
|
|
|
result=0
|
|
|
|
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
|