From 3ff074bd855b3c22915fb93d684ad7db23e867b7 Mon Sep 17 00:00:00 2001 From: Evgeny Vereshchagin Date: Tue, 6 Nov 2018 19:51:45 +0100 Subject: [PATCH] oss-fuzz.sh: copy dictionaries along with "options" files We currently don't have any upstream but it doesn't mean that it should be impossible to experiment with local ones :-) --- tools/oss-fuzz.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/oss-fuzz.sh b/tools/oss-fuzz.sh index df72e47d7d..9a116be114 100755 --- a/tools/oss-fuzz.sh +++ b/tools/oss-fuzz.sh @@ -52,4 +52,5 @@ wget -O $OUT/fuzz-json_seed_corpus.zip https://storage.googleapis.com/skia-fuzze wget -O $OUT/fuzz-json.dict https://raw.githubusercontent.com/rc0r/afl-fuzz/master/dictionaries/json.dict find $build -maxdepth 1 -type f -executable -name "fuzz-*" -exec mv {} $OUT \; +find src -type f -name "fuzz-*.dict" -exec cp {} $OUT \; cp src/fuzz/*.options $OUT