aboutsummaryrefslogtreecommitdiff
path: root/projects/cifuzz-example
diff options
context:
space:
mode:
authorjonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com>2020-08-06 14:53:25 -0700
committerGitHub <noreply@github.com>2020-08-06 14:53:25 -0700
commit95ffdaa04e51e9fe70bbd00e608834e46c45729f (patch)
tree67d5e814e6b5e9b39a98d7cd56f78f2197dcd2be /projects/cifuzz-example
parent571dbfb39f1b13b121693dfae880158d06b92169 (diff)
downloadoss-fuzz-95ffdaa04e51e9fe70bbd00e608834e46c45729f.tar.gz
Fix cifuzz-example (#4272)
Diffstat (limited to 'projects/cifuzz-example')
-rwxr-xr-xprojects/cifuzz-example/build.sh2
1 files changed, 1 insertions, 1 deletions
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!)