| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 ('login_BadAuthentication', {'tag' : 'account_disabled', | 49 ('login_BadAuthentication', {'tag' : 'account_disabled', |
| 50 'error_string' : 'AccountDisabled'}), | 50 'error_string' : 'AccountDisabled'}), |
| 51 ('login_BadAuthentication', {'tag' : 'service_disabled', | 51 ('login_BadAuthentication', {'tag' : 'service_disabled', |
| 52 'error_string' : 'ServiceDisabled'}), | 52 'error_string' : 'ServiceDisabled'}), |
| 53 ('login_BadAuthentication', {'tag' : 'service_unavailable', | 53 ('login_BadAuthentication', {'tag' : 'service_unavailable', |
| 54 'error_string' : 'ServiceUnavailable'}), | 54 'error_string' : 'ServiceUnavailable'}), |
| 55 ('login_BadAuthentication', {'tag' : 'unknown', | 55 ('login_BadAuthentication', {'tag' : 'unknown', |
| 56 'error_string' : 'Unknown'}), | 56 'error_string' : 'Unknown'}), |
| 57 ('login_CryptohomeUnmounted', {}), | 57 ('login_CryptohomeUnmounted', {}), |
| 58 ('login_CryptohomeIncognitoUnmounted', {'creds': '$backdoor'}), | 58 ('login_CryptohomeIncognitoUnmounted', {'creds': '$backdoor'}), |
| 59 ('login_DBusCalls', {}), |
| 59 ('logging_LogVolume', {'constraints': ['bytes_unexpected <= 100000', | 60 ('logging_LogVolume', {'constraints': ['bytes_unexpected <= 100000', |
| 60 'files_unexpected <= 50', | 61 'files_unexpected <= 50', |
| 61 'percent_stateful_used <= 50', | 62 'percent_stateful_used <= 50', |
| 62 'percent_unused_patterns <= 70']}), | 63 'percent_unused_patterns <= 70']}), |
| 63 # TODO: Until ltp can pass on chromiumos | 64 # TODO: Until ltp can pass on chromiumos |
| 64 # ('ltp', {}), | 65 # ('ltp', {}), |
| 65 ('network_UdevRename', {}), | 66 ('network_UdevRename', {}), |
| 66 ('platform_AccurateTime', {'constraints': ['seconds_offset < 60']}), | 67 ('platform_AccurateTime', {'constraints': ['seconds_offset < 60']}), |
| 67 ('platform_CleanShutdown', {}), | 68 ('platform_CleanShutdown', {}), |
| 68 ('platform_DaemonsRespawn', {}), | 69 ('platform_DaemonsRespawn', {}), |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 | 127 |
| 127 if client_attributes.has_chromeos_firmware: | 128 if client_attributes.has_chromeos_firmware: |
| 128 client_at.run_test('hardware_TPMCheck') | 129 client_at.run_test('hardware_TPMCheck') |
| 129 | 130 |
| 130 job.parallel_on_machines(run_assigned_tests, machines) | 131 job.parallel_on_machines(run_assigned_tests, machines) |
| 131 | 132 |
| 132 | 133 |
| 133 # Run server-side suites | 134 # Run server-side suites |
| 134 job.run_control('server/site_tests/suites/control.security') | 135 job.run_control('server/site_tests/suites/control.security') |
| 135 | 136 |
| OLD | NEW |