| 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 NAME = "Nightly" | 6 NAME = "Nightly" |
| 7 TIME = "LONG" | 7 TIME = "LONG" |
| 8 TEST_CATEGORY = "Functional" | 8 TEST_CATEGORY = "Functional" |
| 9 TEST_CLASS = "suite" | 9 TEST_CLASS = "suite" |
| 10 TEST_TYPE = "server" | 10 TEST_TYPE = "server" |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 | 112 |
| 113 client_attributes = site_host_attributes.HostAttributes(machine) | 113 client_attributes = site_host_attributes.HostAttributes(machine) |
| 114 if client_attributes.has_ssd: | 114 if client_attributes.has_ssd: |
| 115 client_at.run_test('hardware_SsdDetection') | 115 client_at.run_test('hardware_SsdDetection') |
| 116 if client_attributes.has_bluetooth: | 116 if client_attributes.has_bluetooth: |
| 117 client_at.run_test('network_DisableInterface', | 117 client_at.run_test('network_DisableInterface', |
| 118 iface_name='hci0', tag='hci0') | 118 iface_name='hci0', tag='hci0') |
| 119 if client_attributes.has_80211n: | 119 if client_attributes.has_80211n: |
| 120 client_at.run_test('network_WiFiCaps') | 120 client_at.run_test('network_WiFiCaps') |
| 121 if not client_attributes.has_resume_bug: | 121 if not client_attributes.has_resume_bug: |
| 122 client_at.run_test('power_Resume') | 122 client_at.run_test('power_Resume') |
| 123 | 123 |
| 124 job.run_test("platform_KernelErrorPaths", host=client) | 124 job.run_test("platform_KernelErrorPaths", host=client) |
| 125 | 125 if client_attributes.has_working_kcrash: |
| 126 job.run_test("logging_KernelCrashServer", host=client) |
| 126 | 127 |
| 127 job.parallel_on_machines(run_assigned_tests, machines) | 128 job.parallel_on_machines(run_assigned_tests, machines) |
| 128 | 129 |
| 129 | 130 |
| 130 # Run server-side suites | 131 # Run server-side suites |
| 131 job.run_control('server/site_tests/suite_SecurityFunctional/control') | 132 job.run_control('server/site_tests/suite_SecurityFunctional/control') |
| OLD | NEW |