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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 # | 68 # |
69 # TODO: Until ltp can pass on chromiumos | 69 # TODO: Until ltp can pass on chromiumos |
70 # ('ltp', {}), | 70 # ('ltp', {}), |
71 # TODO(stanlyew): Re-open network_ConnmanCromoCrash when crosbug.com/13272 | 71 # TODO(stanlyew): Re-open network_ConnmanCromoCrash when crosbug.com/13272 |
72 # is fixed. | 72 # is fixed. |
73 # ('network_ConnmanCromoCrash', {}), | 73 # ('network_ConnmanCromoCrash', {}), |
74 ('network_UdevRename', {}), | 74 ('network_UdevRename', {}), |
75 ('platform_AccurateTime', {'constraints': ['seconds_offset < 60']}), | 75 ('platform_AccurateTime', {'constraints': ['seconds_offset < 60']}), |
76 ('platform_CleanShutdown', {}), | 76 ('platform_CleanShutdown', {}), |
77 ('platform_DaemonsRespawn', {}), | 77 ('platform_DaemonsRespawn', {}), |
78 ('platform_DiskIterate', {}), | |
79 ('platform_FileNum', {}), | 78 ('platform_FileNum', {}), |
80 ('platform_FileSize', {}), | 79 ('platform_FileSize', {}), |
81 ('platform_KernelVersion', {}), | 80 ('platform_KernelVersion', {}), |
82 ('platform_MemCheck', {}), | 81 ('platform_MemCheck', {}), |
83 ('platform_MiniJailCmdLine', {}), | 82 ('platform_MiniJailCmdLine', {}), |
84 ('platform_MiniJailPidNamespace', {}), | 83 ('platform_MiniJailPidNamespace', {}), |
85 ('platform_MiniJailRootCapabilities', {}), | 84 ('platform_MiniJailRootCapabilities', {}), |
86 ('platform_MiniJailVfsNamespace', {}), | 85 ('platform_MiniJailVfsNamespace', {}), |
87 ('platform_ProcessPrivileges', {}), | 86 ('platform_ProcessPrivileges', {}), |
88 ('platform_Rootdev', {}), | 87 ('platform_Rootdev', {}), |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 # make sure the machine is in a fresh state before starting. | 144 # make sure the machine is in a fresh state before starting. |
146 client_at.reboot() | 145 client_at.reboot() |
147 client_at.run_test('graphics_Piglit') | 146 client_at.run_test('graphics_Piglit') |
148 | 147 |
149 # Run security suite. | 148 # Run security suite. |
150 job.run_control('server/site_tests/suites/control.security') | 149 job.run_control('server/site_tests/suites/control.security') |
151 | 150 |
152 # Some of the tests in the main regression suite must be run last to prevent | 151 # Some of the tests in the main regression suite must be run last to prevent |
153 # cross-test issues. Always add new suites above this line. | 152 # cross-test issues. Always add new suites above this line. |
154 job.parallel_on_machines(run_assigned_tests, machines) | 153 job.parallel_on_machines(run_assigned_tests, machines) |
OLD | NEW |