fluent-bit: disable leaks on an additional fuzzer and cleanup build to make local builds nicer (#6900)

This commit is contained in:
DavidKorczynski 2021-11-24 20:46:41 +00:00 committed by GitHub
parent 26ee8a142e
commit efecb19ae3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -38,8 +38,8 @@ cmake -DFLB_TESTS_INTERNAL=ON \
make
# Create options files
for fuzz in http msgpack_parser record_ac signv4 engine; do
echo "[libfuzzer]" >> $OUT/flb-it-fuzz-${fuzz}_fuzzer_OSSFUZZ.options
for fuzz in http msgpack_parser record_ac signv4 engine config config_random; do
echo "[libfuzzer]" > $OUT/flb-it-fuzz-${fuzz}_fuzzer_OSSFUZZ.options
echo "detect_leaks=0" >> $OUT/flb-it-fuzz-${fuzz}_fuzzer_OSSFUZZ.options
done