Fix cifuzz-example (#4272)

This commit is contained in:
jonathanmetzman 2020-08-06 14:53:25 -07:00 committed by GitHub
parent 571dbfb39f
commit 95ffdaa04e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ make -j$(nproc) all # Build the fuzz targets.
# make -j$(nproc) check # Sanity check, not strictly required, but nice to have.
# Copy the fuzzer executables, zip-ed corpora, option and dictionary files to $OUT
find . -name '*_fuzzer2' -exec cp -v '{}' $OUT ';'
find . -name '*_fuzzer' -exec cp -v '{}' $OUT ';'
find . -name '*_fuzzer.dict' -exec cp -v '{}' $OUT ';' # If you have dictionaries.
find . -name '*_fuzzer.options' -exec cp -v '{}' $OUT ';' # If you have custom options.
find . -name '*_fuzzer_seed_corpus.zip' -exec cp -v '{}' $OUT ';' # If you have seed corpora (you better have them!)