[Piglit] [PATCH 3/7] GL_ARB_ubo/negative-bindbuffer-target: New test for API errors.

Eric Anholt eric at anholt.net
Mon Jun 18 18:27:31 PDT 2012


---
 tests/all.tests                                    |    1 +
 .../arb_uniform_buffer_object/CMakeLists.gl.txt    |    1 +
 .../negative-bindbuffer-target.c                   |   92 ++++++++++++++++++++
 3 files changed, 94 insertions(+)
 create mode 100644 tests/spec/arb_uniform_buffer_object/negative-bindbuffer-target.c

diff --git a/tests/all.tests b/tests/all.tests
index f81a53c..3d694b4 100644
--- a/tests/all.tests
+++ b/tests/all.tests
@@ -1704,6 +1704,7 @@ arb_uniform_buffer_object['getuniformlocation'] = concurrent_test('arb_uniform_b
 arb_uniform_buffer_object['layout-std140'] = concurrent_test('arb_uniform_buffer_object-layout-std140')
 arb_uniform_buffer_object['minmax'] = concurrent_test('arb_uniform_buffer_object-minmax')
 arb_uniform_buffer_object['negative-bindbuffer-index'] = concurrent_test('arb_uniform_buffer_object-negative-bindbuffer-index')
+arb_uniform_buffer_object['negative-bindbuffer-target'] = concurrent_test('arb_uniform_buffer_object-negative-bindbuffer-target')
 
 ati_draw_buffers = Group()
 spec['ATI_draw_buffers'] = ati_draw_buffers
diff --git a/tests/spec/arb_uniform_buffer_object/CMakeLists.gl.txt b/tests/spec/arb_uniform_buffer_object/CMakeLists.gl.txt
index 4339d3d..f29d7a8 100644
--- a/tests/spec/arb_uniform_buffer_object/CMakeLists.gl.txt
+++ b/tests/spec/arb_uniform_buffer_object/CMakeLists.gl.txt
@@ -17,5 +17,6 @@ add_executable (arb_uniform_buffer_object-getuniformlocation getuniformlocation.
 add_executable (arb_uniform_buffer_object-layout-std140 layout-std140.c)
 add_executable (arb_uniform_buffer_object-minmax minmax.c)
 add_executable (arb_uniform_buffer_object-negative-bindbuffer-index negative-bindbuffer-index.c)
+add_executable (arb_uniform_buffer_object-negative-bindbuffer-target negative-bindbuffer-target.c)
 
 # vim: ft=cmake:
diff --git a/tests/spec/arb_uniform_buffer_object/negative-bindbuffer-target.c b/tests/spec/arb_uniform_buffer_object/negative-bindbuffer-target.c
new file mode 100644
index 0000000..67eb884
--- /dev/null
+++ b/tests/spec/arb_uniform_buffer_object/negative-bindbuffer-target.c
@@ -0,0 +1,92 @@
+/*
+ * Copyright © 2012 Intel Corporation
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the next
+ * paragraph) shall be included in all copies or substantial portions of the
+ * Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+ * DEALINGS IN THE SOFTWARE.
+ */
+
+/** @file negative-bindbuffer-target.c
+ *
+ * Tests for errors when binding with a bad target.
+ */
+
+#include "piglit-util.h"
+
+int piglit_width = 100;
+int piglit_height = 100;
+int piglit_window_mode = GLUT_DOUBLE | GLUT_RGB | GLUT_ALPHA;
+
+void
+piglit_init(int argc, char **argv)
+{
+	/* We don't need to check extensions for these targets, since
+	 * we're expecting INVALID_ENUM anyway.
+	 */
+	GLenum targets[] = {
+		0xd0d0d0d0,
+		GL_ARRAY_BUFFER,
+		GL_ELEMENT_ARRAY_BUFFER,
+		GL_COPY_READ_BUFFER,
+		GL_COPY_WRITE_BUFFER,
+		GL_PIXEL_PACK_BUFFER,
+		GL_PIXEL_UNPACK_BUFFER,
+		GL_TEXTURE_BUFFER
+	};
+	bool pass = true;
+	int i;
+	GLuint bo;
+
+	piglit_require_extension("GL_ARB_uniform_buffer_object");
+
+	glGenBuffers(1, &bo);
+	glBindBuffer(GL_UNIFORM_BUFFER, bo);
+	glBufferData(GL_UNIFORM_BUFFER, 1, NULL, GL_STATIC_READ);
+
+	/* From the GL_ARB_uniform_buffer_object spec:
+	 *
+	 *      "The error INVALID_ENUM is generated by
+	 *       BindBufferRange and BindBufferBase if <target> is not
+	 *       an accepted indexable buffer object target."
+	 */
+	for (i = 0; i < ARRAY_SIZE(targets); i++) {
+		glBindBufferBase(targets[i], 0, bo);
+		if (!piglit_check_gl_error(GL_INVALID_ENUM)) {
+			printf("Fail on target 0x%08x (%s)\n",
+			       targets[i],
+			       piglit_get_gl_enum_name(targets[i]));
+			pass = false;
+		}
+
+		glBindBufferRange(targets[i], 0, bo, 0, 1);
+		if (!piglit_check_gl_error(GL_INVALID_ENUM)) {
+			printf("Fail on target 0x%08x (%s)\n",
+			       targets[i],
+			       piglit_get_gl_enum_name(targets[i]));
+			pass = false;
+		}
+	}
+
+	piglit_report_result(pass ? PIGLIT_PASS : PIGLIT_FAIL);
+}
+
+enum piglit_result piglit_display(void)
+{
+	/* UNREACHED */
+	return PIGLIT_FAIL;
+}
-- 
1.7.10



More information about the Piglit mailing list