mirror of https://github.com/google/oss-fuzz.git
Fix exception in bisector.py (#9399)
The `run_function` is passed an `architecture` keyword argument:
a8cb9370f0/infra/helper.py (L1357)
This makes the `run_function` passed in the bisector ignore all keyword
arguments.
Related: https://github.com/google/osv.dev/issues/963
This commit is contained in:
parent
d053a8bf79
commit
37179d7e8d
|
@ -137,7 +137,8 @@ def _get_dedup_token(output):
|
|||
def _check_for_crash(project_name, fuzz_target, testcase_path):
|
||||
"""Check for crash."""
|
||||
|
||||
def docker_run(args):
|
||||
def docker_run(args, **kwargs):
|
||||
del kwargs
|
||||
command = ['docker', 'run', '--rm', '--privileged']
|
||||
if sys.stdin.isatty():
|
||||
command.append('-i')
|
||||
|
|
Loading…
Reference in New Issue