From 8d5c72d77aca0bd4c2022083d2e7458e0d9daa9b Mon Sep 17 00:00:00 2001 From: Jonathan Metzman Date: Wed, 20 Jul 2022 14:45:50 -0400 Subject: [PATCH] [wycheproof] Support wycheproof in bad_build_check. Related #8040 --- infra/base-images/base-runner/test_all.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/base-images/base-runner/test_all.py b/infra/base-images/base-runner/test_all.py index 16dfcbfa9..d80b8778b 100755 --- a/infra/base-images/base-runner/test_all.py +++ b/infra/base-images/base-runner/test_all.py @@ -89,7 +89,7 @@ def find_fuzz_targets(directory): # trees). if not is_elf(path) and not is_shell_script(path): continue - if os.getenv('FUZZING_ENGINE') != 'none': + if os.getenv('FUZZING_ENGINE') not in {'none', 'wycheproof'}: with open(path, 'rb') as file_handle: binary_contents = file_handle.read() if b'LLVMFuzzerTestOneInput' not in binary_contents: