| 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 20 matching lines...) Expand all Loading... |
| 31 'iops_4k_write >= 10', | 31 'iops_4k_write >= 10', |
| 32 ]) | 32 ]) |
| 33 job.run_test('storage_DiskSize') | 33 job.run_test('storage_DiskSize') |
| 34 job.run_test('storage_SsdDetection') | 34 job.run_test('storage_SsdDetection') |
| 35 | 35 |
| 36 # Display | 36 # Display |
| 37 job.run_test('video_Resolution') | 37 job.run_test('video_Resolution') |
| 38 | 38 |
| 39 # Graphics | 39 # Graphics |
| 40 job.run_test('gl_APICheck') | 40 job.run_test('gl_APICheck') |
| 41 job.run_test('gl_Bench') | 41 job.run_test('gl_Bench', |
| 42 constraints=[ |
| 43 'mtri_sec_triangle_setup >= 10', |
| 44 'mpixels_sec_fill_solid >= 190', |
| 45 'mpixels_sec_fill_tex_nearest >= 190', |
| 46 'mpixels_sec_fill_tex_bilinear >= 190', |
| 47 ]) |
| 42 job.run_test('gpu_SanAngeles') | 48 job.run_test('gpu_SanAngeles') |
| 43 | 49 |
| 44 # Communications | 50 # Communications |
| 45 job.run_test('network_WiFiCaps') | 51 job.run_test('network_WiFiCaps') |
| 46 | 52 |
| 47 # Extra Requirements | 53 # Extra Requirements |
| 48 job.run_test('power_CPUFreq') | 54 job.run_test('power_CPUFreq') |
| 49 job.run_test('power_CPUIdle') | 55 job.run_test('power_CPUIdle') |
| 50 job.run_test('disktest') | 56 job.run_test('disktest') |
| 51 job.run_test('compilebench') | 57 job.run_test('compilebench') |
| 52 job.run_test('unixbench') | 58 job.run_test('unixbench') |
| 53 job.run_test('ltp') | 59 job.run_test('ltp') |
| 54 job.run_test('system_SAT', seconds=300) | 60 job.run_test('system_SAT', seconds=300) |
| OLD | NEW |