| OLD | NEW |
| 1 # -*- coding: utf-8 -*- | 1 # -*- coding: utf-8 -*- |
| 2 # | 2 # |
| 3 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 3 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
| 6 | 6 |
| 7 # DOCUMENTATION: | 7 # DOCUMENTATION: |
| 8 # | 8 # |
| 9 # Define below an ordered list if tests for execution on factory | 9 # Define below an ordered list if tests for execution on factory |
| 10 # assembly lines. This list can be customized for specific factory | 10 # assembly lines. This list can be customized for specific factory |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 # PLEASE DO NOT REMOVE THIS TEST IN PRODUCTION RELEASES. | 80 # PLEASE DO NOT REMOVE THIS TEST IN PRODUCTION RELEASES. |
| 81 # Match HW-Qual-ID by setting ignored_cids. | 81 # Match HW-Qual-ID by setting ignored_cids. |
| 82 AutomatedSubTest( | 82 AutomatedSubTest( |
| 83 label_en='hw-qual-id matching', | 83 label_en='hw-qual-id matching', |
| 84 label_zw='型號匹配', | 84 label_zw='型號匹配', |
| 85 autotest_name='hardware_Components', | 85 autotest_name='hardware_Components', |
| 86 unique_name='hw-qual-id-match', | 86 unique_name='hw-qual-id-match', |
| 87 dargs={'approved_dbs':'qualified_components*', | 87 dargs={'approved_dbs':'qualified_components*', |
| 88 'ignored_cids':[ | 88 'ignored_cids':[ |
| 89 'hash_ro_firmware', | 89 'hash_ro_firmware', |
| 90 'part_id_bios', | |
| 91 'part_id_hwqual', | 90 'part_id_hwqual', |
| 92 'version_rw_firmware']}), | 91 'version_rw_firmware']}), |
| 93 | 92 |
| 94 AutomatedSubTest( | 93 AutomatedSubTest( |
| 95 label_en='gpio switch check', | 94 label_en='gpio switch check', |
| 96 label_zw='檢查 gpio 開關', | 95 label_zw='檢查 gpio 開關', |
| 97 autotest_name='hardware_GPIOSwitches'), | 96 autotest_name='hardware_GPIOSwitches'), |
| 98 | 97 |
| 99 AutomatedSubTest( | 98 AutomatedSubTest( |
| 100 label_en='system stress', | 99 label_en='system stress', |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 label_zw='清除', | 277 label_zw='清除', |
| 279 autotest_name='factory_Wipe', | 278 autotest_name='factory_Wipe', |
| 280 dargs={'secure_wipe':_DO_FACTORY_SECURE_WIPE})]), | 279 dargs={'secure_wipe':_DO_FACTORY_SECURE_WIPE})]), |
| 281 | 280 |
| 282 InformationScreen( | 281 InformationScreen( |
| 283 label_en='review', | 282 label_en='review', |
| 284 label_zw='報告', | 283 label_zw='報告', |
| 285 autotest_name='factory_Review', | 284 autotest_name='factory_Review', |
| 286 kbd_shortcut='z'), | 285 kbd_shortcut='z'), |
| 287 ] | 286 ] |
| OLD | NEW |