OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 NAME = 'GRAPHICS_TEAR_TEST' |
| 6 AUTHOR = 'The Chromium OS Authors' |
| 7 TIME='MEDIUM' |
| 8 TEST_CATEGORY = 'Functional' |
| 9 TEST_CLASS = "graphics" |
| 10 TEST_TYPE = 'client' |
| 11 |
| 12 DOC = """ |
| 13 This is a semi-automated test that displays vertical lines scrolling |
| 14 horizontally and asks user if tearing was observed. Three variants are |
| 15 available: |
| 16 * using uniform update. This tests that glSwapInterval function performs as |
| 17 expected. |
| 18 * using full texture update. This tests that CPU-GPU interaction is properly |
| 19 synchronized in the driver. |
| 20 * using pixmap to texture extension. This tests that pixmap to texture |
| 21 extension is properly synchronized. |
| 22 """ |
| 23 |
| 24 job.run_test('graphics_TearTest') |
OLD | NEW |