diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2020-07-05 19:44:13 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2020-07-05 20:18:16 +0200 |
commit | 6e8f268873447af940706cca09a46921a2e9a3ce (patch) | |
tree | 0f859fe90b73fe98e1e18e1194313735d430a172 /tests/ossfuzz.sh | |
parent | 503e3bb4953b4c9de818d997593bfe4f090013bf (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.sh | 4 |
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/" |