aboutsummaryrefslogtreecommitdiff
path: root/tests/ossfuzz.sh
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2020-07-05 19:44:13 +0200
committerToni Uhlig <matzeton@googlemail.com>2020-07-05 20:18:16 +0200
commit6e8f268873447af940706cca09a46921a2e9a3ce (patch)
tree0f859fe90b73fe98e1e18e1194313735d430a172 /tests/ossfuzz.sh
parent503e3bb4953b4c9de818d997593bfe4f090013bf (diff)
ossfuzz.sh: do not use wildcards for fuzzer e.g. fuzz/fuzz*
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'tests/ossfuzz.sh')
-rw-r--r--tests/ossfuzz.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/ossfuzz.sh b/tests/ossfuzz.sh
index c47486bfb..14741fd92 100644
--- a/tests/ossfuzz.sh
+++ b/tests/ossfuzz.sh
@@ -27,4 +27,6 @@ sh autogen.sh
./configure --enable-fuzztargets
make
make -C fuzz fuzz_ndpi_reader_seed_corpus.zip
-cp -v fuzz/fuzz* "$OUT/"
+# copy fuzz executables to output directory
+cp -v fuzz/fuzz_ndpi_reader "$OUT/"
+cp -v fuzz/fuzz_process_packet "$OUT/"