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

Unified Diff: client/bin/harness.py

Issue 6539001: Merge remote branch 'cros/upstream' into master. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/autotest.git@master
Patch Set: patch Created 9 years, 10 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 | « client/bin/base_utils.py ('k') | client/bin/harness_ABAT.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/bin/harness.py
diff --git a/client/bin/harness.py b/client/bin/harness.py
index bcb4f966969734be85975eea2164aef1df3da7fd..6265ca2c543ce30be2ddebad7969ee96cd99b609 100644
--- a/client/bin/harness.py
+++ b/client/bin/harness.py
@@ -82,7 +82,7 @@ class harness(object):
pass
-def select(which, job):
+def select(which, job, harness_args):
if not which:
which = 'standalone'
@@ -91,6 +91,6 @@ def select(which, job):
harness_name = 'harness_%s' % which
harness_module = common.setup_modules.import_module(harness_name,
'autotest_lib.client.bin')
- harness_instance = getattr(harness_module, harness_name)(job)
+ harness_instance = getattr(harness_module, harness_name)(job, harness_args)
return harness_instance
« no previous file with comments | « client/bin/base_utils.py ('k') | client/bin/harness_ABAT.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698