From cca04a14f4030bd0c8bbc47973c5d8ab63f42259 Mon Sep 17 00:00:00 2001 From: Leo Neat Date: Tue, 14 Jan 2020 10:50:35 -0800 Subject: [PATCH] [infra] Fix env variable in the helper.py repoduce command (#3230) --- infra/helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/helper.py b/infra/helper.py index bc3ee96c8..46c34abbf 100755 --- a/infra/helper.py +++ b/infra/helper.py @@ -744,7 +744,7 @@ def run_fuzzer(args): def reproduce(args): """Reproduce a specific test case from a specific project.""" - return reproduce_impl(args.project_name, args.fuzzer_name, args.valgrind, args.env_to_add, + return reproduce_impl(args.project_name, args.fuzzer_name, args.valgrind, args.e, args.fuzzer_args, args.testcase_path)