| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 ('login_BadAuthentication', {'tag' : 'account_deleted', | 48 ('login_BadAuthentication', {'tag' : 'account_deleted', |
| 49 'error_string' : 'AccountDeleted'}), | 49 'error_string' : 'AccountDeleted'}), |
| 50 ('login_BadAuthentication', {'tag' : 'account_disabled', | 50 ('login_BadAuthentication', {'tag' : 'account_disabled', |
| 51 'error_string' : 'AccountDisabled'}), | 51 'error_string' : 'AccountDisabled'}), |
| 52 ('login_BadAuthentication', {'tag' : 'service_disabled', | 52 ('login_BadAuthentication', {'tag' : 'service_disabled', |
| 53 'error_string' : 'ServiceDisabled'}), | 53 'error_string' : 'ServiceDisabled'}), |
| 54 ('login_BadAuthentication', {'tag' : 'service_unavailable', | 54 ('login_BadAuthentication', {'tag' : 'service_unavailable', |
| 55 'error_string' : 'ServiceUnavailable'}), | 55 'error_string' : 'ServiceUnavailable'}), |
| 56 ('login_BadAuthentication', {'tag' : 'unknown', | 56 ('login_BadAuthentication', {'tag' : 'unknown', |
| 57 'error_string' : 'Unknown'}), | 57 'error_string' : 'Unknown'}), |
| 58 ('login_CryptohomeUnmounted', {}), | 58 ('login_OwnershipApi', {}), |
| 59 ('login_CryptohomeIncognitoUnmounted', {}), | |
| 60 ('login_OwnershipNotRetaken', {}), | |
| 61 ('login_OwnershipTaken', {}), | |
| 62 ('login_DBusCalls', {}), | 59 ('login_DBusCalls', {}), |
| 63 # TODO(kmixter): Fix log volume usage, or change test constraints. See http://cr
osbug.com/11350 | 60 # TODO(kmixter): Fix log volume usage, or change test constraints. See http://cr
osbug.com/11350 |
| 64 # ('logging_LogVolume', {'constraints': ['bytes_unexpected <= 100000', | 61 # ('logging_LogVolume', {'constraints': ['bytes_unexpected <= 100000', |
| 65 # 'files_unexpected <= 50', | 62 # 'files_unexpected <= 50', |
| 66 # 'percent_stateful_used <= 50', | 63 # 'percent_stateful_used <= 50', |
| 67 # 'percent_unused_patterns <= 70']}), | 64 # 'percent_unused_patterns <= 70']}), |
| 68 # | 65 # |
| 69 # TODO: Until ltp can pass on chromiumos | 66 # TODO: Until ltp can pass on chromiumos |
| 70 # ('ltp', {}), | 67 # ('ltp', {}), |
| 71 ('network_UdevRename', {}), | 68 ('network_UdevRename', {}), |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 job.run_test("logging_KernelCrashServer", host=client) | 127 job.run_test("logging_KernelCrashServer", host=client) |
| 131 | 128 |
| 132 if client_attributes.has_chromeos_firmware: | 129 if client_attributes.has_chromeos_firmware: |
| 133 client_at.run_test('hardware_TPMCheck') | 130 client_at.run_test('hardware_TPMCheck') |
| 134 | 131 |
| 135 job.parallel_on_machines(run_assigned_tests, machines) | 132 job.parallel_on_machines(run_assigned_tests, machines) |
| 136 | 133 |
| 137 | 134 |
| 138 # Run server-side suites | 135 # Run server-side suites |
| 139 job.run_control('server/site_tests/suites/control.security') | 136 job.run_control('server/site_tests/suites/control.security') |
| OLD | NEW |