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