| 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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 label_en='camera', | 145 label_en='camera', |
| 146 label_zw='相機', | 146 label_zw='相機', |
| 147 autotest_name='factory_Camera', | 147 autotest_name='factory_Camera', |
| 148 kbd_shortcut='c'), | 148 kbd_shortcut='c'), |
| 149 | 149 |
| 150 OperatorTest( | 150 OperatorTest( |
| 151 label_en='audio', | 151 label_en='audio', |
| 152 label_zw='音源裝置', | 152 label_zw='音源裝置', |
| 153 autotest_name='factory_Audio', | 153 autotest_name='factory_Audio', |
| 154 kbd_shortcut='a', | 154 kbd_shortcut='a', |
| 155 dargs={'sample':'deps/factory/fhorn.wav'}), | 155 dargs={'audio_sample_path':'fhorn.wav'}), |
| 156 | 156 |
| 157 OperatorTest( | 157 OperatorTest( |
| 158 label_en='usb', | 158 label_en='usb', |
| 159 autotest_name='factory_ExternalStorage', | 159 autotest_name='factory_ExternalStorage', |
| 160 kbd_shortcut='u', | 160 kbd_shortcut='u', |
| 161 dargs={'media':'USB'}), | 161 dargs={'media':'USB'}), |
| 162 | 162 |
| 163 OperatorTest( | 163 OperatorTest( |
| 164 label_en='sd', | 164 label_en='sd', |
| 165 autotest_name='factory_ExternalStorage', | 165 autotest_name='factory_ExternalStorage', |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 'wipe test image!...\n' | 249 'wipe test image!...\n' |
| 250 '請按下 TAB+ENTER 啟用寫入保護以及清除' | 250 '請按下 TAB+ENTER 啟用寫入保護以及清除' |
| 251 '測試程式資料!...')}), | 251 '測試程式資料!...')}), |
| 252 | 252 |
| 253 InformationScreen( | 253 InformationScreen( |
| 254 label_en='review', | 254 label_en='review', |
| 255 label_zw='報告', | 255 label_zw='報告', |
| 256 autotest_name='factory_Review', | 256 autotest_name='factory_Review', |
| 257 kbd_shortcut='z'), | 257 kbd_shortcut='z'), |
| 258 ] | 258 ] |
| OLD | NEW |