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