view fuzzers_test.sh @ 1796:74f4a5987234

Update netio.c (#115) Moved allocated_lport_p and allocated_lport at begin of block to buld in C89
author Guillaume Picquet <guillaume.picquet@gls-france.com>
date Thu, 04 Mar 2021 13:50:13 +0100
parents 8b27de2c92ee
children 42daf3044618
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://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