| 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 = 'The Chromium OS Authors' | 5 AUTHOR = 'The Chromium OS Authors' |
| 6 NAME = 'graphics_SanAngeles' | 6 NAME = 'graphics_SanAngeles' |
| 7 PURPOSE = 'Benchmark OpenGL object rendering.' | 7 PURPOSE = 'Benchmark OpenGL object rendering.' |
| 8 CRITERIA = 'This test is a benchmark. It will fail if it fails to complete.' | 8 CRITERIA = 'This test is a benchmark. It will fail if it fails to complete.' |
| 9 TIME='MEDIUM' | 9 TIME='MEDIUM' |
| 10 TEST_CATEGORY = 'Performance' | 10 TEST_CATEGORY = 'Performance' |
| 11 TEST_CLASS = "graphics" | 11 TEST_CLASS = "graphics" |
| 12 TEST_TYPE = 'client' | 12 TEST_TYPE = 'client' |
| 13 | 13 |
| 14 DOC = """ | 14 DOC = """ |
| 15 This test runs the San Angeles Observation GPU benchmark. This benchmark uses | 15 This test runs the San Angeles Observation GPU benchmark. This benchmark uses |
| 16 a minimal and portable framework to generate a small demo program. It exercises | 16 a minimal and portable framework to generate a small demo program. It exercises |
| 17 basic features of OpenGL like vertex arrays, color arrays, and lighting. It | 17 basic features of OpenGL like vertex arrays, color arrays, and lighting. It |
| 18 also uses objects generated using procedural algorithms. | 18 also uses objects generated using procedural algorithms. |
| 19 """ | 19 """ |
| 20 | 20 |
| 21 job.run_test('graphics_SanAngeles') | 21 job.run_test('graphics_SanAngeles', creds='$backdoor') |
| OLD | NEW |