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

Unified Diff: client/bin/factory.py

Issue 3197015: Fix test dargs, and statusmap creation. (Closed) Base URL: http://src.chromium.org/git/autotest.git
Patch Set: tested, this should work Created 10 years, 4 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 | « no previous file | client/site_tests/factory_Review/factory_Review.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/bin/factory.py
diff --git a/client/bin/factory.py b/client/bin/factory.py
index 3d0d4a7995d81ae7eab6855dba2ca1522f065edf..3d5a3270f4e8489693ed60c24acab8a257d3edb0 100644
--- a/client/bin/factory.py
+++ b/client/bin/factory.py
@@ -345,7 +345,8 @@ class ControlState:
def run_test(self, test):
self._status_map.incr_count(test)
- dargs = test.dargs
+ dargs = {}
+ dargs.update(test.dargs)
dargs.update(self._std_dargs)
test_tag = self._status_map.lookup_tag(test)
dargs.update({'tag': test_tag,
« no previous file with comments | « no previous file | client/site_tests/factory_Review/factory_Review.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698