OLD | NEW |
1 Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 1 Copyright (c) 2010 The Chromium OS Authors. All rights reserved. |
2 Use of this source code is governed by a BSD-style license that can be | 2 Use of this source code is governed by a BSD-style license that can be |
3 found in the LICENSE file. | 3 found in the LICENSE file. |
4 | 4 |
5 | 5 |
6 This document describes the steps to go through in order to run hardware | 6 This document describes the steps to go through in order to run hardware |
7 qualification on a Chrome OS device under test (DUT). | 7 qualification on a Chrome OS device under test (DUT). |
8 | 8 |
9 | 9 |
10 ================================================================================ | 10 ================================================================================ |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 $ ./server/autoserv -r results.external_devices -m <DUT_IP> \ | 137 $ ./server/autoserv -r results.external_devices -m <DUT_IP> \ |
138 -c client/site_tests/suite_HWQual/control.external_devices | 138 -c client/site_tests/suite_HWQual/control.external_devices |
139 | 139 |
140 | 140 |
141 * Run the system suspend/resume stability test: | 141 * Run the system suspend/resume stability test: |
142 | 142 |
143 $ ./server/autoserv -r results.suspend_resume -m <DUT_IP> \ | 143 $ ./server/autoserv -r results.suspend_resume -m <DUT_IP> \ |
144 -c client/site_tests/suite_HWQual/control.suspend_resume | 144 -c client/site_tests/suite_HWQual/control.suspend_resume |
145 | 145 |
146 | 146 |
| 147 * Run the keyboard semi-automated test by first reading the |
| 148 instructions specified in the control file (control.keyboard) and |
| 149 then executing: |
| 150 |
| 151 $ ./server/autoserv -r results.keyboard -m <DUT_IP> -a hwqual \ |
| 152 -c client/site_tests/suite_HWQual/control.keyboard |
| 153 |
| 154 |
147 * If the DUT has a Bluetooth adapter, run the Bluetooth semi-automated | 155 * If the DUT has a Bluetooth adapter, run the Bluetooth semi-automated |
148 tests by following the instructions specified in the control file | 156 tests by following the instructions specified in the control file |
149 (control.bluetooth) and then executing: | 157 (control.bluetooth) and then executing: |
150 | 158 |
151 $ ./server/autoserv -r results.bluetooth -m <DUT_IP> \ | 159 $ ./server/autoserv -r results.bluetooth -m <DUT_IP> \ |
152 -c client/site_tests/suite_HWQual/control.bluetooth | 160 -c client/site_tests/suite_HWQual/control.bluetooth |
153 | 161 |
154 | 162 |
155 * If the DUT has video out ports, run the Video Out semi-automated | 163 * If the DUT has video out ports, run the Video Out semi-automated |
156 test by following the instructions specified in the control file | 164 test by following the instructions specified in the control file |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
226 * Make sure that there are no test failures in automatic, | 234 * Make sure that there are no test failures in automatic, |
227 semi-automatic, or manual test categories. Once all tests pass, | 235 semi-automatic, or manual test categories. Once all tests pass, |
228 package the result folders: | 236 package the result folders: |
229 | 237 |
230 $ tar cjf chromeos-hwqual-TAG-DATE.tar.bz2 results.* | 238 $ tar cjf chromeos-hwqual-TAG-DATE.tar.bz2 results.* |
231 | 239 |
232 Send the tarball to your Google technical support contact for | 240 Send the tarball to your Google technical support contact for |
233 review. | 241 review. |
234 | 242 |
235 | 243 |
OLD | NEW |