view fuzzers_test.sh @ 1632:c4bf28ccab97

packet: remove stale comment about "packet_type" (#63) clean up after 7f15910541 Signed-off-by: Konstantin Demin <[email protected]>
author Konstantin Demin <rockdrilla@gmail.com>
date Wed, 20 Mar 2019 17:33:15 +0300
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