Files
ZiCode0 6833f63b0f 🎉 begin project 🎉
2025-04-06 20:30:38 +12:00

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