fuzzing: Also run input that previously caused crashes

This commit is contained in:
Tobias Brunner 2017-05-31 14:37:27 +02:00
parent 17840fa18e
commit bf31485e1e
1 changed files with 2 additions and 0 deletions

View File

@ -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