From: Evgeny Vereshchagin Date: Tue, 6 Nov 2018 18:51:45 +0000 (+0100) Subject: oss-fuzz.sh: copy dictionaries along with "options" files X-Git-Tag: v240~399^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3ff074bd855b3c22915fb93d684ad7db23e867b7;p=thirdparty%2Fsystemd.git 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 :-) --- diff --git a/tools/oss-fuzz.sh b/tools/oss-fuzz.sh index df72e47d7da..9a116be1142 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