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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 | 74 |
75 # Video | 75 # Video |
76 job.run_test('audiovideo_FFMPEG', | 76 job.run_test('audiovideo_FFMPEG', |
77 fps_warning=40, | 77 fps_warning=40, |
78 constraints=['fps_video_min >= 40.0', | 78 constraints=['fps_video_min >= 40.0', |
79 'tpf_audio_max <= 4.0', # [ms/frame] | 79 'tpf_audio_max <= 4.0', # [ms/frame] |
80 ]) | 80 ]) |
81 job.run_test('audiovideo_V4L2') | 81 job.run_test('audiovideo_V4L2') |
82 | 82 |
83 # RealTimeComm | 83 # RealTimeComm |
| 84 # TODO(noahric): crosbug.com/3001 - Test issue is causing this test |
| 85 # to fail. |
| 86 # |
84 # TODO(zhurunz): crosbug.com/p/1332 - improve performance and | 87 # TODO(zhurunz): crosbug.com/p/1332 - improve performance and |
85 # replace with fps_gtalk_down >= 28.0 and fps_gtalk_dup >= 29.5. | 88 # replace with fps_gtalk_down >= 28.0 and fps_gtalk_dup >= 29.5. |
86 job.run_test('realtimecomm_GTalkPlayground', | 89 # |
87 constraints=[ | 90 # job.run_test('realtimecomm_GTalkPlayground', |
88 'fps_gtalk_down >= 20.0', | 91 # constraints=[ |
89 'fps_gtalk_up >= 20.0', | 92 # 'fps_gtalk_down >= 20.0', |
90 ]) | 93 # 'fps_gtalk_up >= 20.0', |
| 94 # ]) |
91 job.run_test('realtimecomm_GTalkAudioPlayground', | 95 job.run_test('realtimecomm_GTalkAudioPlayground', |
92 constraints=['ctime_gtalk + stime_gtalk < 30']) | 96 constraints=['ctime_gtalk + stime_gtalk < 30']) |
93 job.run_test('realtimecomm_GTalkLmiCamera', | 97 job.run_test('realtimecomm_GTalkLmiCamera', |
94 constraints=[ | 98 constraints=[ |
95 'fps > 28', | 99 'fps > 28', |
96 'latency < 1000', | 100 'latency < 1000', |
97 'jerkiness < 15', | 101 'jerkiness < 15', |
98 ]) | 102 ]) |
99 | 103 |
100 # Communications | 104 # Communications |
101 job.run_test('network_DisableInterface', | 105 job.run_test('network_DisableInterface', |
102 iface_name='wlan0', tag='wlan0') # WiFi | 106 iface_name='wlan0', tag='wlan0') # WiFi |
103 job.run_test('network_DisableInterface', | 107 job.run_test('network_DisableInterface', |
104 iface_name='eth0', tag='eth0') # Ethernet | 108 iface_name='eth0', tag='eth0') # Ethernet |
105 job.run_test('network_DisableInterface', | 109 job.run_test('network_DisableInterface', |
106 iface_name='hci0', tag='hci0') # Bluetooth | 110 iface_name='hci0', tag='hci0') # Bluetooth |
107 job.run_test('network_WiFiCaps') | 111 job.run_test('network_WiFiCaps') |
108 | 112 |
109 # Extra Requirements | 113 # Extra Requirements |
110 job.run_test('compilebench') | 114 job.run_test('compilebench') |
111 job.run_test('disktest') | 115 job.run_test('disktest') |
112 job.run_test('hardware_SAT', seconds=600) | 116 job.run_test('hardware_SAT', seconds=600) |
113 job.run_test('power_CPUFreq') | 117 job.run_test('power_CPUFreq') |
114 job.run_test('power_CPUIdle') | 118 job.run_test('power_CPUIdle') |
115 job.run_test('unixbench') | 119 job.run_test('unixbench') |
116 | 120 |
117 ### Local Variables: | 121 ### Local Variables: |
118 ### mode: python | 122 ### mode: python |
119 ### End: | 123 ### End: |
OLD | NEW |