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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 AutomatedSubTest( | 82 AutomatedSubTest( |
83 label_en='graphics', | 83 label_en='graphics', |
84 label_zw='圖型', | 84 label_zw='圖型', |
85 autotest_name='graphics_GLBench'), | 85 autotest_name='graphics_GLBench'), |
86 | 86 |
87 AutomatedSubTest( | 87 AutomatedSubTest( |
88 label_en='sleep / wake', | 88 label_en='sleep / wake', |
89 label_zw='睡眠 / 喚醒', | 89 label_zw='睡眠 / 喚醒', |
90 autotest_name='power_Resume'), | 90 autotest_name='power_Resume'), |
91 | 91 |
| 92 AutomatedSubTest( |
| 93 label_en='GPS hardware', |
| 94 autotest_name='hardware_GPS'), |
| 95 |
92 AutomatedRebootSubTest( | 96 AutomatedRebootSubTest( |
93 label_en='reboot (%s times)' % _REBOOT_SEQ_ITERATIONS, | 97 label_en='reboot (%s times)' % _REBOOT_SEQ_ITERATIONS, |
94 label_zw='重新開機 (%s 次)' % _REBOOT_SEQ_ITERATIONS, | 98 label_zw='重新開機 (%s 次)' % _REBOOT_SEQ_ITERATIONS, |
95 iterations=_REBOOT_SEQ_ITERATIONS)]), | 99 iterations=_REBOOT_SEQ_ITERATIONS)]), |
96 | 100 |
97 OperatorTest( | 101 OperatorTest( |
98 label_en='keyboard', | 102 label_en='keyboard', |
99 label_zw='鍵盤', | 103 label_zw='鍵盤', |
100 autotest_name='factory_Keyboard', | 104 autotest_name='factory_Keyboard', |
101 kbd_shortcut='k', | 105 kbd_shortcut='k', |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
257 # - check_and_enable_write_protect: enable and verify flashrom | 261 # - check_and_enable_write_protect: enable and verify flashrom |
258 # write protection | 262 # write protection |
259 | 263 |
260 InformationScreen( | 264 InformationScreen( |
261 label_en='review', | 265 label_en='review', |
262 label_zw='報告', | 266 label_zw='報告', |
263 autotest_name='factory_Review', | 267 autotest_name='factory_Review', |
264 unique_name='ReviewInformation', # REVIEW_INFORMATION_TEST_UNIQUE_NAME | 268 unique_name='ReviewInformation', # REVIEW_INFORMATION_TEST_UNIQUE_NAME |
265 kbd_shortcut='z'), | 269 kbd_shortcut='z'), |
266 ] | 270 ] |
OLD | NEW |