summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Olšák <maraeo@gmail.com>2010-08-29 02:57:37 +0200
committerMarek Olšák <maraeo@gmail.com>2010-08-30 06:21:38 +0200
commitea8bcb706fcde39465d4673dc55d9da887119853 (patch)
treee4b1e2752a0bac334ef7bf2928f7bc421979c7c3
parent15141eebd19803244c4b3928fe8fded277732598 (diff)
all.tests: add the ARB_color_buffer_float tests
-rw-r--r--tests/all.tests14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/all.tests b/tests/all.tests
index 88aac271..1ba73e9d 100644
--- a/tests/all.tests
+++ b/tests/all.tests
@@ -611,6 +611,19 @@ add_plain_test(texturing, 'depth-tex-modes')
add_plain_test(texturing, 'depth-tex-modes-glsl')
add_plain_test(texturing, 'depth-tex-compare')
+spec = Group();
+arb_color_buffer_float = Group()
+add_plain_test(arb_color_buffer_float, 'arb_color_buffer_float-getteximage')
+add_plain_test(arb_color_buffer_float, 'arb_color_buffer_float-queries')
+add_plain_test(arb_color_buffer_float, 'arb_color_buffer_float-readpixels')
+add_plain_test(arb_color_buffer_float, 'arb_color_buffer_float-probepixel')
+add_plain_test(arb_color_buffer_float, 'arb_color_buffer_float-drawpixels')
+add_plain_test(arb_color_buffer_float, 'arb_color_buffer_float-clear')
+add_plain_test(arb_color_buffer_float, 'arb_color_buffer_float-render')
+add_plain_test(arb_color_buffer_float, 'arb_color_buffer_float-mrt')
+spec['ARB_color_buffer_float'] = arb_color_buffer_float
+
+
# Include the glsl parser tests from glslparser.tests.
def add_glslparsertest(shader, result):
glslparsertest[shader] = PlainExecTest(['glslparsertest', 'tests/glslparsertest/shaders/' + shader, result])
@@ -1065,6 +1078,7 @@ profile.tests['asmparsertest'] = asmparsertest
profile.tests['mesa'] = mesa
profile.tests['shaders'] = shaders
profile.tests['texturing'] = texturing
+profile.tests['spec'] = spec
profile.tests['glx'] = glx
class ValgrindExecTest(PlainExecTest):