Index: tools/testrunner/local/execution.py |
diff --git a/tools/testrunner/local/execution.py b/tools/testrunner/local/execution.py |
index d5b519aadbdc501fb1a170dac4ff016aaf517e6d..6adfd09b91b61faa27fad0ed8d42d34959401126 100644 |
--- a/tools/testrunner/local/execution.py |
+++ b/tools/testrunner/local/execution.py |
@@ -49,12 +49,11 @@ |
class Instructions(object): |
- def __init__(self, command, test_id, timeout, verbose, env): |
+ def __init__(self, command, test_id, timeout, verbose): |
self.command = command |
self.id = test_id |
self.timeout = timeout |
self.verbose = verbose |
- self.env = env |
# Structure that keeps global information per worker process. |
@@ -112,7 +111,7 @@ |
# the like. |
if statusfile.IsSlow(test.outcomes or [statusfile.PASS]): |
timeout *= 2 |
- return Instructions(command, test.id, timeout, context.verbose, test.env) |
+ return Instructions(command, test.id, timeout, context.verbose) |
class Job(object): |
@@ -179,8 +178,7 @@ |
return SetupProblem(e, self.test) |
start_time = time.time() |
- output = commands.Execute(instr.command, instr.verbose, instr.timeout, |
- instr.env) |
+ output = commands.Execute(instr.command, instr.verbose, instr.timeout) |
self._rename_coverage_data(output, process_context.context) |
return (instr.id, output, time.time() - start_time) |