[infra] Code Coverage: use -close_fd_mask=3 to speed up noisy fuzz targets.

This commit is contained in:
Max Moroz 2018-08-31 15:42:22 -07:00
parent 264e323ac3
commit 72b82ee08f
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ function run_fuzz_target {
local profdata_file="$DUMPS_DIR/$target.profdata"
# Use 100s timeout instead of 25s as code coverage builds can be very slow.
local args="-timeout=100 -runs=0 /corpus/${target}"
local args="-timeout=100 -runs=0 -close_fd_mask=3 /corpus/${target}"
export LLVM_PROFILE_FILE=$profraw_file
timeout $TIMEOUT $target $args &> $LOGS_DIR/$target.log