Mercurial > dropbear
view fuzzers_test.sh @ 1720:e2e4929d057b DROPBEAR_2020.79
can't call "make lint" without configure
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Mon, 15 Jun 2020 23:38:08 +0800 |
parents | f52919ffd3b1 |
children | 8b27de2c92ee |
line wrap: on
line source
#!/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