Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(308)

Side by Side Diff: client/site_tests/suite_Factory/test_list

Issue 6410034: Add GPS hardware test to the factory suite. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/autotest.git@master
Patch Set: 'Add gps autotest to the factory suite.' Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 99
100 AutomatedSubTest( 100 AutomatedSubTest(
101 label_en='sleep / wake', 101 label_en='sleep / wake',
102 label_zw='睡眠 / 喚醒', 102 label_zw='睡眠 / 喚醒',
103 autotest_name='power_Resume'), 103 autotest_name='power_Resume'),
104 104
105 AutomatedRebootSubTest( 105 AutomatedRebootSubTest(
106 label_en='reboot (%s times)' % _REBOOT_SEQ_ITERATIONS, 106 label_en='reboot (%s times)' % _REBOOT_SEQ_ITERATIONS,
107 label_zw='重新開機 (%s 次)' % _REBOOT_SEQ_ITERATIONS, 107 label_zw='重新開機 (%s 次)' % _REBOOT_SEQ_ITERATIONS,
108 iterations=_REBOOT_SEQ_ITERATIONS)]), 108 iterations=_REBOOT_SEQ_ITERATIONS)]),
109 109
Nick Sanders 2011/03/24 06:53:36 It should probably go in runin (fully automated te
vb 2011/03/25 17:11:51 Done.
110 OperatorTest( 110 OperatorTest(
111 label_en='keyboard', 111 label_en='keyboard',
112 label_zw='鍵盤', 112 label_zw='鍵盤',
113 autotest_name='factory_Keyboard', 113 autotest_name='factory_Keyboard',
114 kbd_shortcut='k', 114 kbd_shortcut='k',
115 dargs={'layout':'en_us'}), 115 dargs={'layout':'en_us'}),
116 116
117 OperatorTest( 117 OperatorTest(
118 label_en='touchpad', 118 label_en='touchpad',
119 label_zw='觸控板', 119 label_zw='觸控板',
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 240
241 AutomatedRebootSubTest( 241 AutomatedRebootSubTest(
242 label_en='reboot', 242 label_en='reboot',
243 label_zw='重新開機', 243 label_zw='重新開機',
244 iterations=1), 244 iterations=1),
245 245
246 AutomatedSubTest( 246 AutomatedSubTest(
247 label_en='component validation', 247 label_en='component validation',
248 label_zw='元件驗證', 248 label_zw='元件驗證',
249 unique_name='GRT_HWComponents', 249 unique_name='GRT_HWComponents',
250 autotest_name='hardware_Components')]), 250 autotest_name='hardware_Components'),
251
252 AutomatedSubTest(
Nick Sanders 2011/03/24 06:53:36 This is the firmware modification sequence, Can yo
vb 2011/03/25 17:11:51 Done.
253 label_en='GPS hardware',
254 autotest_name='hardware_GPS')]),
251 255
252 # THIS IS A GOOGLE REQUIRED TEST. 256 # THIS IS A GOOGLE REQUIRED TEST.
253 # PLEASE DO NOT REMOVE THIS TEST IN PRODUCTION RELEASES. 257 # PLEASE DO NOT REMOVE THIS TEST IN PRODUCTION RELEASES.
254 AutomatedSequence( 258 AutomatedSequence(
255 label_en='final', 259 label_en='final',
256 label_zw='最終步驟', 260 label_zw='最終步驟',
257 subtest_tag_prefix='finalize', 261 subtest_tag_prefix='finalize',
258 kbd_shortcut='f', 262 kbd_shortcut='f',
259 subtest_list=[ 263 subtest_list=[
260 AutomatedSubTest( 264 AutomatedSubTest(
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 autotest_name='factory_Wipe', 296 autotest_name='factory_Wipe',
293 dargs={'secure_wipe':_DO_FACTORY_SECURE_WIPE})]), 297 dargs={'secure_wipe':_DO_FACTORY_SECURE_WIPE})]),
294 298
295 InformationScreen( 299 InformationScreen(
296 label_en='review', 300 label_en='review',
297 label_zw='報告', 301 label_zw='報告',
298 autotest_name='factory_Review', 302 autotest_name='factory_Review',
299 unique_name='ReviewInformation', # REVIEW_INFORMATION_TEST_UNIQUE_NAME 303 unique_name='ReviewInformation', # REVIEW_INFORMATION_TEST_UNIQUE_NAME
300 kbd_shortcut='z'), 304 kbd_shortcut='z'),
301 ] 305 ]
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698