Skip to content

Commit

Permalink
Fix missing FUZZING_LANGUAGE in coverage build. (#3843)
Browse files Browse the repository at this point in the history
  • Loading branch information
inferno-chromium authored May 18, 2020
1 parent bc45406 commit c066a42
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion infra/gcb/build_and_run_coverage.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def skip_build(message):
sys.stderr.write('%s\n' % message)

# Since the script should print build_id, print '0' as a special value.
print '0'
print('0')
exit(0)


Expand Down Expand Up @@ -79,6 +79,7 @@ def get_build_steps(project_dir):
env = CONFIGURATION[:]
out = '/workspace/out/' + SANITIZER
env.append('OUT=' + out)
env.append('FUZZING_LANGUAGE=' + language)

workdir = build_project.workdir_from_dockerfile(dockerfile_path)
if not workdir:
Expand Down

0 comments on commit c066a42

Please sign in to comment.