1# Copyright (c) 2012 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 5NAME = 'graphics_GLAPICheck' 6AUTHOR = 'chromeos-gfx' 7PURPOSE = 'Verify correctness of OpenGL/GLES.' 8CRITERIA = """ 9This test will fail if: 10 - GL version is less than 1.4 11 - GL extension is less than 2 12 - GLES version is less than 2 13 - EGL version is less than 1.3 14 - If GL extensions don't include needed extensions 15""" 16ATTRIBUTES = "suite:bvt-perbuild, suite:graphics, suite:graphics_per-day, suite:graphics_system, suite:hwqual" 17TIME='SHORT' 18TEST_CATEGORY = 'Performance' 19TEST_CLASS = "graphics" 20TEST_TYPE = 'client' 21BUG_TEMPLATE = { 22 'components': ['OS>Kernel>Graphics'], 23} 24 25DOC = """ 26This test will run some binary programs to extract various version strings from 27OpenGL/GLES, and then parse those strings to compare with expected values. 28""" 29 30job.run_test('graphics_GLAPICheck') 31