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 5 NAME = 'graphics_GLAPICheck' 6 AUTHOR = 'chromeos-gfx' 7 PURPOSE = 'Verify correctness of OpenGL/GLES.' 8 CRITERIA = """ 9 This 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 """ 16 ATTRIBUTES = "suite:bvt-perbuild, suite:graphics, suite:graphics_per-day, suite:graphics_system, suite:hwqual" 17 TIME='SHORT' 18 TEST_CATEGORY = 'Performance' 19 TEST_CLASS = "graphics" 20 TEST_TYPE = 'client' 21 BUG_TEMPLATE = { 22 'components': ['OS>Kernel>Graphics'], 23 } 24 25 DOC = """ 26 This test will run some binary programs to extract various version strings from 27 OpenGL/GLES, and then parse those strings to compare with expected values. 28 """ 29 30 job.run_test('graphics_GLAPICheck') 31