| 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 label_zw='壓力測試', | 89 label_zw='壓力測試', |
| 90 autotest_name='hardware_SAT', | 90 autotest_name='hardware_SAT', |
| 91 dargs={'seconds': _SAT_DURATION_SECS}, | 91 dargs={'seconds': _SAT_DURATION_SECS}, |
| 92 drop_caches=True), | 92 drop_caches=True), |
| 93 | 93 |
| 94 AutomatedSubTest( | 94 AutomatedSubTest( |
| 95 label_en='graphics', | 95 label_en='graphics', |
| 96 label_zw='圖型', | 96 label_zw='圖型', |
| 97 autotest_name='graphics_GLBench'), | 97 autotest_name='graphics_GLBench'), |
| 98 | 98 |
| 99 AutomatedSubTest( |
| 100 label_en='sleep / wake', |
| 101 label_zw='睡眠 / 喚醒', |
| 102 autotest_name='power_Resume'), |
| 103 |
| 99 AutomatedRebootSubTest( | 104 AutomatedRebootSubTest( |
| 100 label_en='reboot (%s times)' % _REBOOT_SEQ_ITERATIONS, | 105 label_en='reboot (%s times)' % _REBOOT_SEQ_ITERATIONS, |
| 101 label_zw='重新開機 (%s 次)' % _REBOOT_SEQ_ITERATIONS, | 106 label_zw='重新開機 (%s 次)' % _REBOOT_SEQ_ITERATIONS, |
| 102 iterations=_REBOOT_SEQ_ITERATIONS)]), | 107 iterations=_REBOOT_SEQ_ITERATIONS)]), |
| 103 | 108 |
| 104 OperatorTest( | 109 OperatorTest( |
| 105 label_en='keyboard', | 110 label_en='keyboard', |
| 106 label_zw='鍵盤', | 111 label_zw='鍵盤', |
| 107 autotest_name='factory_Keyboard', | 112 autotest_name='factory_Keyboard', |
| 108 kbd_shortcut='k', | 113 kbd_shortcut='k', |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 'wipe test image!...\n' | 249 'wipe test image!...\n' |
| 245 '請按下 TAB+ENTER 啟用寫入保護以及清除' | 250 '請按下 TAB+ENTER 啟用寫入保護以及清除' |
| 246 '測試程式資料!...')}), | 251 '測試程式資料!...')}), |
| 247 | 252 |
| 248 InformationScreen( | 253 InformationScreen( |
| 249 label_en='review', | 254 label_en='review', |
| 250 label_zw='報告', | 255 label_zw='報告', |
| 251 autotest_name='factory_Review', | 256 autotest_name='factory_Review', |
| 252 kbd_shortcut='z'), | 257 kbd_shortcut='z'), |
| 253 ] | 258 ] |
| OLD | NEW |