[Piglit] [PATCH v2 2/5] arb_sparse_buffer: minmax test
Nicolai Hähnle
nhaehnle at gmail.com
Wed Apr 19 07:36:10 UTC 2017
From: Nicolai Hähnle <nicolai.haehnle at amd.com>
Reviewed-by: Alejandro Piñeiro <apinheiro at igalia.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 a832ffb..9cc2b9d 100644
--- a/tests/all.py
+++ b/tests/all.py
@@ -4395,20 +4395,25 @@ with profile.test_list.group_manager(
'max-ssbo-size')) as g:
g(['arb_shader_storage_buffer_object-max-ssbo-size', 'vs'], 'vs')
g(['arb_shader_storage_buffer_object-max-ssbo-size', 'vsexceed'],
'vsexceed')
g(['arb_shader_storage_buffer_object-max-ssbo-size', 'fs'], 'fs')
g(['arb_shader_storage_buffer_object-max-ssbo-size', 'fsexceed'],
'fsexceed')
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'])
g(['ext_polygon_offset_clamp-dlist'])
with profile.test_list.group_manager(
PiglitGLTest,
grouptools.join('spec', 'ARB_pipeline_statistics_query')) as g:
g(['arb_pipeline_statistics_query-vert'])
g(['arb_pipeline_statistics_query-vert_adj'])
diff --git a/tests/spec/CMakeLists.txt b/tests/spec/CMakeLists.txt
index 5bdde84..0eda19d 100644
--- a/tests/spec/CMakeLists.txt
+++ b/tests/spec/CMakeLists.txt
@@ -54,20 +54,21 @@ add_subdirectory (arb_shader_subroutine)
add_subdirectory (arb_shader_texture_lod/execution)
add_subdirectory (arb_shader_atomic_counters)
add_subdirectory (arb_shader_objects)
add_subdirectory (arb_shader_image_load_store)
add_subdirectory (arb_shader_image_size)
add_subdirectory (arb_shading_language_420pack/execution)
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)
add_subdirectory (arb_texture_compression)
add_subdirectory (arb_texture_cube_map_array)
add_subdirectory (arb_texture_float)
add_subdirectory (arb_texture_rectangle)
add_subdirectory (arb_texture_multisample)
add_subdirectory (arb_texture_storage)
add_subdirectory (arb_texture_storage_multisample)
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