diff options
author | Matt Johnston <matt@ucc.asn.au> | 2018-03-01 22:54:57 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2018-03-01 22:54:57 +0800 |
commit | c1a2dcb25d549cf1a3a4607bb8a95838175962f6 (patch) | |
tree | b3c79c10fbab97999ea6ab7432e1d2e601d22251 /fuzzers_test.sh | |
parent | 8062a4e8d622162a2eda72e09f930d2475c29070 (diff) |
add fuzzers to travis
Diffstat (limited to 'fuzzers_test.sh')
-rwxr-xr-x | fuzzers_test.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/fuzzers_test.sh b/fuzzers_test.sh new file mode 100755 index 0000000..1618ee1 --- /dev/null +++ b/fuzzers_test.sh @@ -0,0 +1,12 @@ +#!/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 |