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 AUTHOR = "Chrome OS Team" | 5 AUTHOR = "Chrome OS Team" |
6 NAME = "HWQualAuto" | 6 NAME = "HWQualAuto" |
7 TIME = "LONG" | 7 TIME = "LONG" |
8 TEST_CATEGORY = "Functional" | 8 TEST_CATEGORY = "Functional" |
9 TEST_CLASS = "suite" | 9 TEST_CLASS = "suite" |
10 TEST_TYPE = "client" | 10 TEST_TYPE = "client" |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 ]) | 60 ]) |
61 job.run_test('audiovideo_V4L2') | 61 job.run_test('audiovideo_V4L2') |
62 | 62 |
63 # RealTimeComm | 63 # RealTimeComm |
64 job.run_test('realtimecomm_GTalkPlayground', | 64 job.run_test('realtimecomm_GTalkPlayground', |
65 constraints=[ | 65 constraints=[ |
66 'fps_gtalk_down >= 28.0', | 66 'fps_gtalk_down >= 28.0', |
67 'fps_gtalk_up >= 29.0', | 67 'fps_gtalk_up >= 29.0', |
68 'ctime_gtalk + stime_gtalk < 65', | 68 'ctime_gtalk + stime_gtalk < 65', |
69 'ctime_chrome + stime_chrome < 20', | 69 'ctime_chrome + stime_chrome < 20', |
| 70 'ctime_pulse + stime_pulse < 5', |
| 71 ]) |
| 72 job.run_test('realtimecomm_GTalkAudioPlayground', |
| 73 constraints=[ |
| 74 'ctime_gtalk + stime_gtalk < 20', |
| 75 'ctime_pulse + stime_pulse < 5', |
70 ]) | 76 ]) |
71 | 77 |
72 # Communications | 78 # Communications |
73 job.run_test('network_DisableInterface', | 79 job.run_test('network_DisableInterface', |
74 iface_name='wlan0', tag='wlan0') # WiFi | 80 iface_name='wlan0', tag='wlan0') # WiFi |
75 job.run_test('network_DisableInterface', | 81 job.run_test('network_DisableInterface', |
76 iface_name='eth0', tag='eth0') # Ethernet | 82 iface_name='eth0', tag='eth0') # Ethernet |
77 job.run_test('network_DisableInterface', | 83 job.run_test('network_DisableInterface', |
78 iface_name='hci0', tag='hci0') # Bluetooth | 84 iface_name='hci0', tag='hci0') # Bluetooth |
79 job.run_test('network_WiFiCaps') | 85 job.run_test('network_WiFiCaps') |
80 | 86 |
81 # Firmware Verified Boot Crypto Performance. | 87 # Firmware Verified Boot Crypto Performance. |
82 job.run_test('firmware_VbootCrypto') | 88 job.run_test('firmware_VbootCrypto') |
83 | 89 |
84 # Extra Requirements | 90 # Extra Requirements |
85 job.run_test('power_CPUFreq') | 91 job.run_test('power_CPUFreq') |
86 job.run_test('power_CPUIdle') | 92 job.run_test('power_CPUIdle') |
87 job.run_test('disktest') | 93 job.run_test('disktest') |
88 job.run_test('compilebench') | 94 job.run_test('compilebench') |
89 job.run_test('unixbench') | 95 job.run_test('unixbench') |
90 job.run_test('ltp') | 96 job.run_test('ltp') |
91 job.run_test('hardware_SAT', seconds=300) | 97 job.run_test('hardware_SAT', seconds=300) |
OLD | NEW |