diff options
author | Luca Deri <lucaderi@users.noreply.github.com> | 2020-07-06 10:23:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-06 10:23:50 +0200 |
commit | c0b34555c20233bc9aedd2ed7173717e8ae7ad31 (patch) | |
tree | 6a66f431ff828b16f965ec72264e54e21214077a /tests | |
parent | b4edb758240e28da446d43c55fb0698ab66ded41 (diff) | |
parent | 6e8f268873447af940706cca09a46921a2e9a3ce (diff) |
Merge pull request #951 from lnslbrty/fix/ossfuzzer
ossfuzz.sh: do not use wildcards for fuzzer e.g. fuzz/fuzz*
Diffstat (limited to 'tests')
-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/" |