Skip to content

Commit 8c75bf0

Browse files
authored
infra/helper: pass the right arguments to docker_run in reproduce_impl (#14178)
``` def docker_run(run_args, print_output=True, architecture='x86_64'): """Calls `docker run`.""" ``` the argument of `docker_run`(that is `run_function`) is `print_output` and I don't think `err_result` had the same meaning. Without this patch, using `infra/helper.py reproduce` does not produce any output because the docker stdout is not printed.
1 parent 9092bfc commit 8c75bf0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

infra/helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1665,7 +1665,7 @@ def reproduce_impl( # pylint: disable=too-many-arguments
16651665
fuzzer_name,
16661666
'-runs=100',
16671667
] + fuzzer_args
1668-
return run_function(run_args, err_result)
1668+
return run_function(run_args, architecture=architecture)
16691669

16701670

16711671
def _validate_project_name(project_name):

0 commit comments

Comments
 (0)