libsndfile: ensure no logging to reduce CIFuzz time (#7004)

This commit is contained in:
DavidKorczynski 2021-12-10 21:18:04 +00:00 committed by GitHub
parent 872562c26c
commit 09f2fc65d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -17,3 +17,9 @@
# Run the OSS-Fuzz script in the project.
./ossfuzz/ossfuzz.sh
# To make CIFuzz fast, see here for details: https://github.com/libsndfile/libsndfile/pull/796
for fuzzer in sndfile_alt_fuzzer sndfile_fuzzer; do
echo "[libfuzzer]" > ${OUT}/${fuzzer}.options
echo "close_fd_mask = 3" >> ${OUT}/${fuzzer}.options
done