Merge remote branch 'cros/upstream' into autotest-rebase
Merged to upstream trunk@5066, from trunk@4749.
There is no way I could enlist each individual CL from the upstream here since it will blow up the changelist description field.
BUG=
TEST=
Had patched this CL into a fresh cut client to avoid any side effect.
run_remote_test bvt from both emerged location and third_party/autotest/file.
Both test passed!
We should also keep any eye on this to see how it gets propagated into cautotest server.
TBR=dalecurtis
Change-Id: I72f2bc7a9de530178484aea1bfb5ace68bcad029
diff --git a/client/common_lib/control_data.py b/client/common_lib/control_data.py
index 5b8caf2..dcc49cd 100644
--- a/client/common_lib/control_data.py
+++ b/client/common_lib/control_data.py
@@ -19,6 +19,7 @@
self.experimental = False
self.run_verify = True
self.sync_count = 1
+ self.test_parameters = set()
diff = REQUIRED_VARS - set(vars)
if len(diff) > 0:
@@ -134,6 +135,7 @@
def set_test_type(self, val):
self._set_option('test_type', val, ['client', 'server'])
+
def set_test_parameters(self, val):
self._set_set('test_parameters', val)