summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2011-07-08 14:54:29 -0700
committerIan Romanick <ian.d.romanick@intel.com>2011-08-19 09:24:51 -0700
commit2154c5ce3992c1302f0b846777b4837958cec783 (patch)
tree7d520c3cb54e7539c489167129d1f10979089b5d
parenta834e6861e3c4d5748d24143d11064e4415a9267 (diff)
Remove redundant test
This test is made redundant by the spec/glsl-1.20/recursion tests. As is, this test may not have been valid. It expected the error to be generated at compile time, but many implementations generate this error at link time. Acked-by: José Fonseca <jfonseca@vmware.com>
-rw-r--r--tests/glslparsertest/glsl2/function-12.vert22
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/glslparsertest/glsl2/function-12.vert b/tests/glslparsertest/glsl2/function-12.vert
deleted file mode 100644
index ac3e0ffcf..000000000
--- a/tests/glslparsertest/glsl2/function-12.vert
+++ /dev/null
@@ -1,22 +0,0 @@
-// [config]
-// expect_result: fail
-// glsl_version: 1.20
-// [end config]
-
-/*
- * GLSL 1.20
- * 6.1.1 Function Calling Conventions
- * Recursion is not allowed, not even statically.
- */
-
-#version 120
-
-int A()
-{
- return A();
-}
-
-void main()
-{
- gl_Position = gl_Vertex;
-}