move fuzzing corpus into a single dir

This commit is contained in:
Oscar Mira 2019-08-19 18:45:03 +02:00
parent 16a5cac2e3
commit a3466f305c
15 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ export VIPS_WARNING=0
ret=0
for fuzzer in *_fuzzer; do
find "${fuzzer}_corpus" -type f -not -empty -print0 \
find "common_fuzzer_corpus" -type f -not -empty -print0 \
| xargs -0 -n1 "./$fuzzer" || ret=1
done