[Piglit] [PATCH 1/2] arb_sparse_buffer: minmax test

Nicolai Hähnle nhaehnle at gmail.com
Wed Feb 8 12:53:18 UTC 2017


From: Nicolai Hähnle <nicolai.haehnle at amd.com>

---
 tests/all.py                                   |  5 +++
 tests/spec/CMakeLists.txt                      |  1 +
 tests/spec/arb_sparse_buffer/CMakeLists.gl.txt | 12 ++++++
 tests/spec/arb_sparse_buffer/CMakeLists.txt    |  1 +
 tests/spec/arb_sparse_buffer/minmax.c          | 58 ++++++++++++++++++++++++++
 5 files changed, 77 insertions(+)
 create mode 100644 tests/spec/arb_sparse_buffer/CMakeLists.gl.txt
 create mode 100644 tests/spec/arb_sparse_buffer/CMakeLists.txt
 create mode 100644 tests/spec/arb_sparse_buffer/minmax.c

diff --git a/tests/all.py b/tests/all.py
index 96737f6..9ad9652 100644
--- a/tests/all.py
+++ b/tests/all.py
@@ -4374,6 +4374,11 @@ with profile.test_list.group_manager(
 
 with profile.test_list.group_manager(
         PiglitGLTest,
+        grouptools.join('spec', 'arb_sparse_buffer')) as g:
+    g(['arb_sparse_buffer-minmax'], 'minmax')
+
+with profile.test_list.group_manager(
+        PiglitGLTest,
         grouptools.join('spec', 'ext_polygon_offset_clamp')) as g:
     g(['ext_polygon_offset_clamp-draw'])
     g(['ext_polygon_offset_clamp-draw_gles2'])
diff --git a/tests/spec/CMakeLists.txt b/tests/spec/CMakeLists.txt
index 4ac1a53..6a62379 100644
--- a/tests/spec/CMakeLists.txt
+++ b/tests/spec/CMakeLists.txt
@@ -60,6 +60,7 @@ add_subdirectory (arb_stencil_texturing)
 add_subdirectory (arb_sync)
 add_subdirectory (arb_uniform_buffer_object)
 add_subdirectory (ati_draw_buffers)
+add_subdirectory (arb_sparse_buffer)
 add_subdirectory (arb_tessellation_shader)
 add_subdirectory (arb_texture_buffer_object)
 add_subdirectory (arb_texture_buffer_range)
diff --git a/tests/spec/arb_sparse_buffer/CMakeLists.gl.txt b/tests/spec/arb_sparse_buffer/CMakeLists.gl.txt
new file mode 100644
index 0000000..3490ba7
--- /dev/null
+++ b/tests/spec/arb_sparse_buffer/CMakeLists.gl.txt
@@ -0,0 +1,12 @@
+include_directories(
+	${GLEXT_INCLUDE_DIR}
+	${OPENGL_INCLUDE_PATH}
+	${piglit_SOURCE_DIR}/tests/util
+)
+
+link_libraries (
+	piglitutil_${piglit_target_api}
+	${OPENGL_gl_LIBRARY}
+)
+
+piglit_add_executable (arb_sparse_buffer-minmax minmax.c)
diff --git a/tests/spec/arb_sparse_buffer/CMakeLists.txt b/tests/spec/arb_sparse_buffer/CMakeLists.txt
new file mode 100644
index 0000000..144a306
--- /dev/null
+++ b/tests/spec/arb_sparse_buffer/CMakeLists.txt
@@ -0,0 +1 @@
+piglit_include_target_api()
diff --git a/tests/spec/arb_sparse_buffer/minmax.c b/tests/spec/arb_sparse_buffer/minmax.c
new file mode 100644
index 0000000..1f8e617
--- /dev/null
+++ b/tests/spec/arb_sparse_buffer/minmax.c
@@ -0,0 +1,58 @@
+/*
+ * Copyright (c) 2017 Advanced Micro Devices, Inc.
+ *
+ * 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
+ *
+ * Test for the minimum maximum values specified in the
+ * ARB_sparse_buffer extension.
+ */
+
+#include "piglit-util-gl.h"
+#include "minmax-test.h"
+
+PIGLIT_GL_TEST_CONFIG_BEGIN
+
+	config.supports_gl_compat_version = 33;
+	config.supports_gl_core_version = 33;
+
+PIGLIT_GL_TEST_CONFIG_END
+
+enum piglit_result
+piglit_display(void)
+{
+	/* UNREACHED */
+	return PIGLIT_FAIL;
+}
+
+void
+piglit_init(int argc, char **argv)
+{
+	piglit_require_extension("GL_ARB_sparse_buffer");
+	piglit_print_minmax_header();
+
+	piglit_test_max_uint(GL_SPARSE_BUFFER_PAGE_SIZE_ARB, 65536);
+
+	if (!piglit_check_gl_error(GL_NO_ERROR))
+		piglit_report_result(PIGLIT_FAIL);
+	piglit_report_result(piglit_minmax_pass ? PIGLIT_PASS : PIGLIT_FAIL);
+}
-- 
2.9.3



More information about the Piglit mailing list