OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 |
| 6 # DESCRIPTION : |
| 7 # |
| 8 # This is an example factory test that does not really do anything -- |
| 9 # it displays a message in the center of the testing area, as |
| 10 # communicated by arguments to run_once(). This test makes use of the |
| 11 # factory_test library to display its UI, and to monitor keyboard |
| 12 # events for test-switching triggers. This test can be terminated by |
| 13 # typing SHIFT-Q. |
| 14 |
| 15 from autotest_lib.client.bin import test |
| 16 from autotest_lib.client.common_lib import error |
| 17 from autotest_lib.client.common_lib import factory_test |
| 18 |
| 19 |
| 20 class factory_RebootStub(test.test): |
| 21 version = 1 |
| 22 |
| 23 def run_once(self): |
| 24 factory_test.XXX_log('factory_RebootStub') |
OLD | NEW |