Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(53)

Unified Diff: tools/testrunner/local/execution.py

Issue 2811103002: Revert of [date] Add ICU backend for timezone info behind a flag (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/testrunner/local/commands.py ('k') | tools/testrunner/objects/testcase.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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)
« no previous file with comments | « tools/testrunner/local/commands.py ('k') | tools/testrunner/objects/testcase.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698