Mercurial > dropbear
comparison fuzzers_test.sh @ 1566:3fc0e9a0978b
add fuzzers to travis
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Thu, 01 Mar 2018 22:54:57 +0800 |
parents | |
children | f52919ffd3b1 |
comparison
equal
deleted
inserted
replaced
1565:2fd52c383163 | 1566:3fc0e9a0978b |
---|---|
1 #!/bin/sh | |
2 | |
3 # runs fuzz corpus with standalone fuzzers | |
4 | |
5 result=0 | |
6 | |
7 hg clone https://secure.ucc.asn.au/hg/dropbear-fuzzcorpus fuzzcorpus || exit 1 | |
8 for f in `make list-fuzz-targets`; do | |
9 ./$f fuzzcorpus/$f/* || result=1 | |
10 done | |
11 | |
12 exit $result |