| 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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 label_zw='顯示', | 144 label_zw='顯示', |
| 145 autotest_name='factory_Display', | 145 autotest_name='factory_Display', |
| 146 kbd_shortcut='m'), | 146 kbd_shortcut='m'), |
| 147 | 147 |
| 148 OperatorTest( | 148 OperatorTest( |
| 149 label_en='x-display', | 149 label_en='x-display', |
| 150 label_zw='外接顯示', | 150 label_zw='外接顯示', |
| 151 autotest_name='factory_ExtDisplay', | 151 autotest_name='factory_ExtDisplay', |
| 152 kbd_shortcut='n', | 152 kbd_shortcut='n', |
| 153 dargs={'has_audio':True, | 153 dargs={'has_audio':True, |
| 154 'sample':'deps/factory/fhorn.wav'}), | 154 'audio_sample_path':'site_tests/suite_Factory/fhorn.wav'}), |
| 155 | 155 |
| 156 OperatorTest( | 156 OperatorTest( |
| 157 label_en='camera', | 157 label_en='camera', |
| 158 label_zw='相機', | 158 label_zw='相機', |
| 159 autotest_name='factory_Camera', | 159 autotest_name='factory_Camera', |
| 160 kbd_shortcut='c'), | 160 kbd_shortcut='c'), |
| 161 | 161 |
| 162 OperatorTest( | 162 OperatorTest( |
| 163 label_en='audio', | 163 label_en='audio', |
| 164 label_zw='音源裝置', | 164 label_zw='音源裝置', |
| 165 autotest_name='factory_Audio', | 165 autotest_name='factory_Audio', |
| 166 kbd_shortcut='a', | 166 kbd_shortcut='a', |
| 167 dargs={'audio_sample_path':'fhorn.wav'}), | 167 dargs={'audio_sample_path':'site_tests/suite_Factory/fhorn.wav'}), |
| 168 | 168 |
| 169 OperatorTest( | 169 OperatorTest( |
| 170 label_en='usb', | 170 label_en='usb', |
| 171 autotest_name='factory_ExternalStorage', | 171 autotest_name='factory_ExternalStorage', |
| 172 kbd_shortcut='u', | 172 kbd_shortcut='u', |
| 173 dargs={'media':'USB'}), | 173 dargs={'media':'USB'}), |
| 174 | 174 |
| 175 OperatorTest( | 175 OperatorTest( |
| 176 label_en='sd', | 176 label_en='sd', |
| 177 autotest_name='factory_ExternalStorage', | 177 autotest_name='factory_ExternalStorage', |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 label_zw='清除', | 278 label_zw='清除', |
| 279 autotest_name='factory_Wipe', | 279 autotest_name='factory_Wipe', |
| 280 dargs={'secure_wipe':_DO_FACTORY_SECURE_WIPE})]), | 280 dargs={'secure_wipe':_DO_FACTORY_SECURE_WIPE})]), |
| 281 | 281 |
| 282 InformationScreen( | 282 InformationScreen( |
| 283 label_en='review', | 283 label_en='review', |
| 284 label_zw='報告', | 284 label_zw='報告', |
| 285 autotest_name='factory_Review', | 285 autotest_name='factory_Review', |
| 286 kbd_shortcut='z'), | 286 kbd_shortcut='z'), |
| 287 ] | 287 ] |
| OLD | NEW |