mirror of
http://galexander.org/git/simplesshd.git
synced 2024-11-30 11:18:12 +00:00
13 lines
289 B
Bash
Executable File
13 lines
289 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# runs fuzz corpus with standalone fuzzers
|
|
|
|
result=0
|
|
|
|
test -d fuzzcorpus && hg --repository fuzzcorpus/ pull || hg clone https://hg.ucc.asn.au/dropbear-fuzzcorpus fuzzcorpus || exit 1
|
|
for f in `make list-fuzz-targets`; do
|
|
./$f fuzzcorpus/$f/* || result=1
|
|
done
|
|
|
|
exit $result
|