Mercurial > dropbear
view fuzzers_test.sh @ 1575:e75dab5bec71
some linting after fuzz merge (#60)
* fix prototype
* remove extra comma
* use m_free after m_strdup
author | François Perrad <francois.perrad@gadz.org> |
---|---|
date | Sat, 03 Mar 2018 04:06:45 +0100 |
parents | 3fc0e9a0978b |
children | f52919ffd3b1 |
line wrap: on
line source
#!/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