| 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 12 matching lines...) Expand all Loading... |
| 23 | 23 |
| 24 # Change this to the number of reboots you want during run-in. | 24 # Change this to the number of reboots you want during run-in. |
| 25 _REBOOT_SEQ_ITERATIONS = 2 | 25 _REBOOT_SEQ_ITERATIONS = 2 |
| 26 | 26 |
| 27 # Change this to the duration of SAT during run-in (suggested 10+ mins). | 27 # Change this to the duration of SAT during run-in (suggested 10+ mins). |
| 28 _SAT_DURATION_SECS = 60 | 28 _SAT_DURATION_SECS = 60 |
| 29 | 29 |
| 30 # Change this to match your local log upload site. | 30 # Change this to match your local log upload site. |
| 31 _LOG_UPLOAD_DESTINATION = { | 31 _LOG_UPLOAD_DESTINATION = { |
| 32 'method': 'ftp', | 32 'method': 'ftp', |
| 33 'host': '*', # change to hostname/IP of destination | 33 'host': '*', # change to hostname/IP of destination. '*' will bypass upload. |
| 34 'port': 21, # change this if you are using different port | 34 'port': 21, # change this if you are using different port. |
| 35 'id': 'anonymous', | 35 'user': 'anonymous', # change this if you have a specific login id. |
| 36 'pw': '*', | 36 'passwd': '*', # change this to password of the login id. |
| 37 'initdir': '', # change this if you want to assign the folder to store logs. |
| 38 'timeout': 3*60, # change this if you have a really poor slow network... |
| 37 } | 39 } |
| 38 | 40 |
| 39 | 41 |
| 40 # -- END OF CUSTOMIZATION VARIABLES -------------------------------- | 42 # -- END OF CUSTOMIZATION VARIABLES -------------------------------- |
| 41 | 43 |
| 42 | 44 |
| 43 # TEST ORDERING: Tests in the test_list will be run in the order | 45 # TEST ORDERING: Tests in the test_list will be run in the order |
| 44 # below, unless the operator interrupts the flow via keyboard | 46 # below, unless the operator interrupts the flow via keyboard |
| 45 # shortcut. To cause immediate execution of the run-in tests, for | 47 # shortcut. To cause immediate execution of the run-in tests, for |
| 46 # example, reorder runin to occur as the first test in the test_list. | 48 # example, reorder runin to occur as the first test in the test_list. |
| (...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 276 label_zw='清除', | 278 label_zw='清除', |
| 277 autotest_name='factory_Wipe', | 279 autotest_name='factory_Wipe', |
| 278 dargs={'secure_wipe':_DO_FACTORY_SECURE_WIPE})]), | 280 dargs={'secure_wipe':_DO_FACTORY_SECURE_WIPE})]), |
| 279 | 281 |
| 280 InformationScreen( | 282 InformationScreen( |
| 281 label_en='review', | 283 label_en='review', |
| 282 label_zw='報告', | 284 label_zw='報告', |
| 283 autotest_name='factory_Review', | 285 autotest_name='factory_Review', |
| 284 kbd_shortcut='z'), | 286 kbd_shortcut='z'), |
| 285 ] | 287 ] |
| OLD | NEW |