| 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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 | 157 |
| 158 | 158 |
| 159 * Run the keyboard semi-automated test by first reading the | 159 * Run the keyboard semi-automated test by first reading the |
| 160 instructions specified in the control file (control.keyboard) and | 160 instructions specified in the control file (control.keyboard) and |
| 161 then executing: | 161 then executing: |
| 162 | 162 |
| 163 $ ./server/autoserv -r results.keyboard -m <DUT_IP> -a hwqual \ | 163 $ ./server/autoserv -r results.keyboard -m <DUT_IP> -a hwqual \ |
| 164 -c client/site_tests/suite_HWQual/control.keyboard | 164 -c client/site_tests/suite_HWQual/control.keyboard |
| 165 | 165 |
| 166 | 166 |
| 167 * Run the touchpad semi-automated test by first reading the |
| 168 instructions specified in the control file (control.touchpad) and |
| 169 then executing: |
| 170 |
| 171 $ ./server/autoserv -r results.touchpad -m <DUT_IP> -a hwqual \ |
| 172 -c client/site_tests/suite_HWQual/control.touchpad |
| 173 |
| 174 |
| 167 * If the DUT has a Bluetooth adapter, run the Bluetooth semi-automated | 175 * If the DUT has a Bluetooth adapter, run the Bluetooth semi-automated |
| 168 tests by following the instructions specified in the control file | 176 tests by following the instructions specified in the control file |
| 169 (control.bluetooth) and then executing: | 177 (control.bluetooth) and then executing: |
| 170 | 178 |
| 171 $ ./server/autoserv -r results.bluetooth -m <DUT_IP> \ | 179 $ ./server/autoserv -r results.bluetooth -m <DUT_IP> \ |
| 172 -c client/site_tests/suite_HWQual/control.bluetooth | 180 -c client/site_tests/suite_HWQual/control.bluetooth |
| 173 | 181 |
| 174 | 182 |
| 175 * If the DUT has video out ports, run the Video Out semi-automated | 183 * If the DUT has video out ports, run the Video Out semi-automated |
| 176 test by following the instructions specified in the control file | 184 test by following the instructions specified in the control file |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 * Make sure that there are no test failures in automatic, | 254 * Make sure that there are no test failures in automatic, |
| 247 semi-automatic, or manual test categories. Once all tests pass, | 255 semi-automatic, or manual test categories. Once all tests pass, |
| 248 package the result directories: | 256 package the result directories: |
| 249 | 257 |
| 250 $ tar cjf chromeos-hwqual-TAG-DATE.tar.bz2 results.* | 258 $ tar cjf chromeos-hwqual-TAG-DATE.tar.bz2 results.* |
| 251 | 259 |
| 252 Send the tarball to your Google technical support contact for | 260 Send the tarball to your Google technical support contact for |
| 253 review. | 261 review. |
| 254 | 262 |
| 255 | 263 |
| OLD | NEW |