OLD | NEW |
1 AUTHOR = "Chrome OS Team" | 1 AUTHOR = "Chrome OS Team" |
2 NAME = "Factory Keyboard Test" | 2 NAME = "Factory Keyboard Test" |
3 TIME = "SHORT" | 3 TIME = "SHORT" |
4 TEST_CATEGORY = "Factory" | 4 TEST_CATEGORY = "Factory" |
5 TEST_CLASS = "hardware" | 5 TEST_CLASS = "hardware" |
6 TEST_TYPE = "client" | 6 TEST_TYPE = "client" |
7 | 7 |
8 DOC = """This test checks whether all keyboard keys function properly.""" | 8 DOC = """ |
| 9 This test checks whether all keyboard keys function properly. This |
| 10 test will display a keyboard image and keys will be highlighted as |
| 11 they are pressed and released. Once all keys have been used, a brief |
| 12 'PASS' message will be displayed and the test will terminate. After |
| 13 the first key is hit, a countdown will begin. If not all keys are |
| 14 used in time, the test will fail with an 'ERROR' message that is |
| 15 displayed forever (unless the 'hwqual' argument is passed in). |
| 16 """ |
9 | 17 |
10 job.run_test('hardware_KeyboardAssembly') | 18 restart_ui = False |
| 19 if 'hwqual' in args: |
| 20 restart_ui = True |
| 21 |
| 22 job.run_test('hardware_KeyboardAssembly', restart_ui=restart_ui) |
OLD | NEW |