From: Tobias Brunner Date: Wed, 31 May 2017 12:37:27 +0000 (+0200) Subject: fuzzing: Also run input that previously caused crashes X-Git-Tag: 5.6.1dr1~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bf31485e1eed4d6b313405a2088ad3884120e714;p=thirdparty%2Fstrongswan.git fuzzing: Also run input that previously caused crashes --- diff --git a/fuzz/Makefile.am b/fuzz/Makefile.am index 927ace78ba..bdc3e2ebc2 100644 --- a/fuzz/Makefile.am +++ b/fuzz/Makefile.am @@ -26,4 +26,6 @@ check: all corpus=$${f#fuzz_}; \ corpus=$${corpus%%_*}; \ ./$$f $(FUZZING_CORPORA)/$${corpus}/*; \ + crashes=$(FUZZING_CORPORA)/$${corpus}-crash; \ + test ! -d $${crashes} || ./$$f $${crashes}/*; \ done