| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 | 62 |
| 63 # Graphics | 63 # Graphics |
| 64 job.run_test('graphics_GLAPICheck') | 64 job.run_test('graphics_GLAPICheck') |
| 65 job.run_test('graphics_GLBench', | 65 job.run_test('graphics_GLBench', |
| 66 constraints=[ | 66 constraints=[ |
| 67 'mtri_sec_triangle_setup >= 10', | 67 'mtri_sec_triangle_setup >= 10', |
| 68 'mpixels_sec_fill_solid >= 190', | 68 'mpixels_sec_fill_solid >= 190', |
| 69 'mpixels_sec_fill_tex_nearest >= 190', | 69 'mpixels_sec_fill_tex_nearest >= 190', |
| 70 'mpixels_sec_fill_tex_bilinear >= 190', | 70 'mpixels_sec_fill_tex_bilinear >= 190', |
| 71 ]) | 71 ]) |
| 72 job.run_test('graphics_SanAngeles') | 72 job.run_test('graphics_SanAngeles', creds='$backdoor') |
| 73 | 73 |
| 74 # Video | 74 # Video |
| 75 job.run_test('audiovideo_FFMPEG', | 75 job.run_test('audiovideo_FFMPEG', |
| 76 constraints=['fps_video_min >= 40.0', | 76 constraints=['fps_video_min >= 40.0', |
| 77 'tpf_audio_max <= 4.0', # [ms/frame] | 77 'tpf_audio_max <= 4.0', # [ms/frame] |
| 78 ]) | 78 ]) |
| 79 job.run_test('audiovideo_V4L2') | 79 job.run_test('audiovideo_V4L2') |
| 80 | 80 |
| 81 # RealTimeComm | 81 # RealTimeComm |
| 82 job.run_test('realtimecomm_GTalkPlayground', | 82 job.run_test('realtimecomm_GTalkPlayground', |
| (...skipping 20 matching lines...) Expand all Loading... |
| 103 job.run_test('compilebench') | 103 job.run_test('compilebench') |
| 104 job.run_test('disktest') | 104 job.run_test('disktest') |
| 105 job.run_test('hardware_SAT', seconds=600) | 105 job.run_test('hardware_SAT', seconds=600) |
| 106 job.run_test('power_CPUFreq') | 106 job.run_test('power_CPUFreq') |
| 107 job.run_test('power_CPUIdle') | 107 job.run_test('power_CPUIdle') |
| 108 job.run_test('unixbench') | 108 job.run_test('unixbench') |
| 109 | 109 |
| 110 ### Local Variables: | 110 ### Local Variables: |
| 111 ### mode: python | 111 ### mode: python |
| 112 ### End: | 112 ### End: |
| OLD | NEW |