[infra] Code Coverage: fix build_and_run_coverage.py.

This commit is contained in:
Max Moroz 2018-09-12 07:01:21 -07:00
parent 8f687dfdad
commit 4867091719
1 changed files with 1 additions and 0 deletions

View File

@ -121,6 +121,7 @@ def get_build_steps(project_dir):
# Split fuzz targets into batches of CORPUS_DOWNLOAD_BATCH_SIZE. # Split fuzz targets into batches of CORPUS_DOWNLOAD_BATCH_SIZE.
for i in xrange(0, len(fuzz_targets), CORPUS_DOWNLOAD_BATCH_SIZE): for i in xrange(0, len(fuzz_targets), CORPUS_DOWNLOAD_BATCH_SIZE):
download_corpus_args = []
for binary_name in fuzz_targets[i : i+CORPUS_DOWNLOAD_BATCH_SIZE]: for binary_name in fuzz_targets[i : i+CORPUS_DOWNLOAD_BATCH_SIZE]:
qualified_name = binary_name qualified_name = binary_name
qualified_name_prefix = '%s_' % project_name qualified_name_prefix = '%s_' % project_name