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 = "Regression" | 6 NAME = "Regression" |
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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 ('platform_MiniJailPidNamespace', {}), | 81 ('platform_MiniJailPidNamespace', {}), |
82 ('platform_MiniJailRootCapabilities', {}), | 82 ('platform_MiniJailRootCapabilities', {}), |
83 ('platform_MiniJailVfsNamespace', {}), | 83 ('platform_MiniJailVfsNamespace', {}), |
84 ('platform_ProcessPrivileges', {}), | 84 ('platform_ProcessPrivileges', {}), |
85 ('platform_Rootdev', {}), | 85 ('platform_Rootdev', {}), |
86 ('platform_SessionManagerTerm', {}), | 86 ('platform_SessionManagerTerm', {}), |
87 ('platform_StackProtector', {}), | 87 ('platform_StackProtector', {}), |
88 ('platform_TempFS', {}), | 88 ('platform_TempFS', {}), |
89 # TODO(dalecurtis): AudioBench does not work; see http://crosbug.com/12647 | 89 # TODO(dalecurtis): AudioBench does not work; see http://crosbug.com/12647 |
90 # ('realtimecomm_GTalkAudioBench', {}), | 90 # ('realtimecomm_GTalkAudioBench', {}), |
| 91 ('realtimecomm_GTalkunittest', {}), |
91 ('unixbench', {}), | 92 ('unixbench', {}), |
92 # desktopui_UrlFetch has an undesired 'shutdown' command inside which will cause | 93 # desktopui_UrlFetch has an undesired 'shutdown' command inside which will cause |
93 # consecutive test to be aborted unexpectly. Move it to the end of the test | 94 # consecutive test to be aborted unexpectly. Move it to the end of the test |
94 # loop. | 95 # loop. |
95 ('desktopui_UrlFetch', {}), | 96 ('desktopui_UrlFetch', {}), |
96 ] | 97 ] |
97 | 98 |
98 # A dict which holds {machine: [(test, argv), (test, argv), ...]} | 99 # A dict which holds {machine: [(test, argv), (test, argv), ...]} |
99 test_dict = {} | 100 test_dict = {} |
100 | 101 |
(...skipping 30 matching lines...) Expand all Loading... |
131 job.run_test("logging_KernelCrashServer", host=client) | 132 job.run_test("logging_KernelCrashServer", host=client) |
132 | 133 |
133 if client_attributes.has_chromeos_firmware: | 134 if client_attributes.has_chromeos_firmware: |
134 client_at.run_test('hardware_TPMCheck') | 135 client_at.run_test('hardware_TPMCheck') |
135 | 136 |
136 job.parallel_on_machines(run_assigned_tests, machines) | 137 job.parallel_on_machines(run_assigned_tests, machines) |
137 | 138 |
138 | 139 |
139 # Run server-side suites | 140 # Run server-side suites |
140 job.run_control('server/site_tests/suites/control.security') | 141 job.run_control('server/site_tests/suites/control.security') |
OLD | NEW |