diff options
author | Nardi Ivan <nardi.ivan@gmail.com> | 2023-10-08 20:36:23 +0200 |
---|---|---|
committer | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2023-10-09 15:41:46 +0200 |
commit | 1366d9415678a44456f4f8e38adef7114a106273 (patch) | |
tree | 7c8da81948ca2da57a2c4a1d061604077373f1a5 /tests/ossfuzz.sh | |
parent | 86115a8a65c98d0665100b5ae85cc661d1404783 (diff) |
fuzzing: extend fuzzing coverage
Try fuzzing some functions which write to file/file descriptor; to avoid
slowing the fuzzer, close its stdout
Diffstat (limited to 'tests/ossfuzz.sh')
-rw-r--r-- | tests/ossfuzz.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/ossfuzz.sh b/tests/ossfuzz.sh index 365751b3b..42943838a 100644 --- a/tests/ossfuzz.sh +++ b/tests/ossfuzz.sh @@ -51,6 +51,8 @@ ls fuzz/fuzz* | grep -v "\." | while read i; do cp $i $OUT/; done cp fuzz/*.dict $OUT/ # Copy seed corpus cp fuzz/*.zip $OUT/ +# Copy options +cp fuzz/*.options $OUT/ # Copy configuration files cp example/protos.txt $OUT/ cp example/categories.txt $OUT/ |