From 95ffdaa04e51e9fe70bbd00e608834e46c45729f Mon Sep 17 00:00:00 2001 From: jonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com> Date: Thu, 6 Aug 2020 14:53:25 -0700 Subject: [PATCH] Fix cifuzz-example (#4272) --- projects/cifuzz-example/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/cifuzz-example/build.sh b/projects/cifuzz-example/build.sh index 4b46b7f53..874a55a36 100755 --- a/projects/cifuzz-example/build.sh +++ b/projects/cifuzz-example/build.sh @@ -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!)