From d01808333d086dd259f6c6fbf07457664faf7bb7 Mon Sep 17 00:00:00 2001 From: jonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com> Date: Thu, 5 Aug 2021 13:27:24 -0700 Subject: [cifuzz] Fuzz in cifuzz-base (#6142) Fixes: #5926 --- infra/cifuzz/build_fuzzers_entrypoint.py | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'infra/cifuzz/build_fuzzers_entrypoint.py') diff --git a/infra/cifuzz/build_fuzzers_entrypoint.py b/infra/cifuzz/build_fuzzers_entrypoint.py index 5aed2e615..c128ae937 100644 --- a/infra/cifuzz/build_fuzzers_entrypoint.py +++ b/infra/cifuzz/build_fuzzers_entrypoint.py @@ -17,7 +17,6 @@ import sys import build_fuzzers import config_utils -import workspace_utils # pylint: disable=c-extension-no-member # pylint gets confused because of the relative import of cifuzz. @@ -47,14 +46,7 @@ def build_fuzzers_entrypoint(): # If we've gotten to this point and we don't need to do bad_build_check, # then the build has succeeded. returncode = 0 - # yapf: disable - elif build_fuzzers.check_fuzzer_build( - workspace_utils.Workspace(config), - config.sanitizer, - config.language, - allowed_broken_targets_percentage=config.allowed_broken_targets_percentage - ): - # yapf: enable + elif build_fuzzers.check_fuzzer_build(config): returncode = 0 return returncode -- cgit v1.2.3