Max Moroz 2017-09-06 16:59:59 -07:00 committed by Oliver Chang
parent e63a5c3625
commit 718db9173d
1 changed files with 0 additions and 14 deletions

View File

@ -185,9 +185,6 @@ def get_build_steps(project_yaml, dockerfile_path):
env.append('OUT=' + out) env.append('OUT=' + out)
# To disable running of all fuzz targets while doing |test_all| step.
env.append('SKIP_TEST_TARGET_RUN=1')
workdir = workdir_from_dockerfile(dockerfile_path) workdir = workdir_from_dockerfile(dockerfile_path)
if not workdir: if not workdir:
workdir = '/src' workdir = '/src'
@ -209,17 +206,6 @@ def get_build_steps(project_yaml, dockerfile_path):
'rm -r /out && cd /src && cd {1} && mkdir -p {0} && compile && rm -rf /work && rm -rf /src'.format(out, workdir), 'rm -r /out && cd /src && cd {1} && mkdir -p {0} && compile && rm -rf /work && rm -rf /src'.format(out, workdir),
], ],
}, },
# test binaries
{'name': 'gcr.io/oss-fuzz-base/base-runner',
'env': env,
'args': [
'bash',
'-c',
# Verify that fuzzers have been built properly and are not broken.
# TODO(mmoroz): raise a notification if not passing the tests.
'test_all'
]
},
# zip binaries # zip binaries
{'name': image, {'name': image,
'args': [ 'args': [