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

Unified Diff: server/site_tests/suite_Network3G/control

Issue 3076039: Add the firmware load test to the Network3G suite. (Closed) Base URL: ssh://git@chromiumos-git//autotest.git
Patch Set: Merge changes from head 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: server/site_tests/suite_Network3G/control
diff --git a/server/site_tests/suite_Network3G/control b/server/site_tests/suite_Network3G/control
index 6895a62cb606ac8c243e0187469f289d94f08186..1907412e67a405569427ad0859e009461114fc6d 100644
--- a/server/site_tests/suite_Network3G/control
+++ b/server/site_tests/suite_Network3G/control
@@ -18,11 +18,14 @@ from autotest_lib.client.common_lib import error
# List of tests to be run.
-TESTS = [
+CLIENT_TESTS = [
'network_3GModemPresent',
'network_3GSmokeTest'
]
+SERVER_TESTS = [
+ 'network_3GLoadFirmware',
+]
def run_client_test(machine):
client = hosts.create_host(machine)
@@ -33,8 +36,13 @@ def run_client_test(machine):
raise error.TestNAError(
"Machine does not have a 3G module or is not labeled as having one.")
- for test in TESTS:
+ for test in CLIENT_TESTS:
client_at.run_test(test)
+def run_server_test(machine):
+ host = hosts.create_host(machine)
+ for test in SERVER_TESTS:
+ job.run_test(test, host=host)
job.parallel_on_machines(run_client_test, machines)
+parallel_simple(run_server_test, machines)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698