mirror of https://github.com/google/oss-fuzz.git
libsndfile: ensure no logging to reduce CIFuzz time (#7004)
This commit is contained in:
parent
872562c26c
commit
09f2fc65d5
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue