From c1a2dcb25d549cf1a3a4607bb8a95838175962f6 Mon Sep 17 00:00:00 2001 From: Matt Johnston Date: Thu, 1 Mar 2018 22:54:57 +0800 Subject: add fuzzers to travis --- fuzzers_test.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 fuzzers_test.sh (limited to 'fuzzers_test.sh') 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 -- cgit v1.2.3