| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 AUTHOR = "Chrome OS Team" | 5 AUTHOR = "Chrome OS Team" |
| 6 TIME = "LONG" | 6 TIME = "LONG" |
| 7 NAME = "NetworkWiFi" | 7 NAME = "NetworkWiFi" |
| 8 TEST_CATEGORY = "Stress" | 8 TEST_CATEGORY = "Stress" |
| 9 TEST_CLASS = "suite" | 9 TEST_CLASS = "suite" |
| 10 TEST_TYPE = "server" | 10 TEST_TYPE = "server" |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 | 73 |
| 74 if time.time() > timeout: | 74 if time.time() > timeout: |
| 75 raise error.TestFail('Network hardware did not come back after power ' | 75 raise error.TestFail('Network hardware did not come back after power ' |
| 76 'cycle.') | 76 'cycle.') |
| 77 | 77 |
| 78 args.append('router_addr=' + str(client_attributes.router_addr)) | 78 args.append('router_addr=' + str(client_attributes.router_addr)) |
| 79 args.append('server_addr=' + str(client_attributes.server_addr)) | 79 args.append('server_addr=' + str(client_attributes.server_addr)) |
| 80 | 80 |
| 81 site_wifitest.run_test_dir('network_WiFiSecMat', job, args, machine) | 81 site_wifitest.run_test_dir('network_WiFiSecMat', job, args, machine) |
| 82 site_wifitest.run_test_dir('network_WiFiMatFunc', job, args, machine) | 82 site_wifitest.run_test_dir('network_WiFiMatFunc', job, args, machine) |
| 83 site_wifitest.run_test_dir('network_WiFiManager', job, args, machine) |
| 83 | 84 |
| 84 | 85 |
| 85 parallel_simple(run_server_tests, machines) | 86 parallel_simple(run_server_tests, machines) |
| OLD | NEW |