[Piglit] [PATCH v4] tests/spec: added minmax test for spec shader storage buffer object
Ilia Mirkin
imirkin at alum.mit.edu
Tue Mar 17 08:54:09 PDT 2015
Pushed, thanks!
On Mon, Mar 16, 2015 at 7:39 PM, Aditya Atluri <adityaavinash1 at gmail.com> wrote:
> ---
> v2: - changed gl_core to 40, removed whitespace,
> changed min test to max test for offset of alignment,
> changed block size to 2^27 (Ilia)
> v3: - removed link library glu,
> removed include libraries in tests/util,
> changed block size back to 2^27,
> added run_concurrent=True in all.py (Ilia)
> v4: - removed run_concurrent=True from all.py (Dylan)
>
> tests/all.py | 5 ++
> tests/spec/CMakeLists.txt | 1 +
> .../CMakeLists.gl.txt | 13 +++++
> .../CMakeLists.txt | 1 +
> .../spec/arb_shader_storage_buffer_object/minmax.c | 67 ++++++++++++++++++++++
> 5 files changed, 87 insertions(+)
> create mode 100644 tests/spec/arb_shader_storage_buffer_object/CMakeLists.gl.txt
> create mode 100644 tests/spec/arb_shader_storage_buffer_object/CMakeLists.txt
> create mode 100644 tests/spec/arb_shader_storage_buffer_object/minmax.c
>
> diff --git a/tests/all.py b/tests/all.py
> index 1c3c889..49ae468 100644
> --- a/tests/all.py
> +++ b/tests/all.py
> @@ -3964,6 +3964,11 @@ with profile.group_manager(
>
> with profile.group_manager(
> PiglitGLTest,
> + grouptools.join('spec', 'arb_shader_storage_buffer_object')) as g:
> + g(['arb_shader_storage_buffer_object-minmax'], 'minmax')
> +
> +with profile.group_manager(
> + PiglitGLTest,
> grouptools.join('spec', 'ext_polygon_offset_clamp')) as g:
> g(['ext_polygon_offset_clamp-draw'], run_concurrent=True)
> g(['ext_polygon_offset_clamp-dlist'], run_concurrent=True)
> diff --git a/tests/spec/CMakeLists.txt b/tests/spec/CMakeLists.txt
> index 7423589..a680c1b 100644
> --- a/tests/spec/CMakeLists.txt
> +++ b/tests/spec/CMakeLists.txt
> @@ -84,6 +84,7 @@ add_subdirectory (arb_vertex_array_bgra)
> add_subdirectory (arb_vertex_buffer_object)
> add_subdirectory (arb_vertex_program)
> add_subdirectory (arb_copy_buffer)
> +add_subdirectory (arb_shader_storage_buffer_object)
> add_subdirectory (glsl-1.10)
> add_subdirectory (glsl-1.20)
> add_subdirectory (glsl-1.30)
> diff --git a/tests/spec/arb_shader_storage_buffer_object/CMakeLists.gl.txt b/tests/spec/arb_shader_storage_buffer_object/CMakeLists.gl.txt
> new file mode 100644
> index 0000000..d0ba641
> --- /dev/null
> +++ b/tests/spec/arb_shader_storage_buffer_object/CMakeLists.gl.txt
> @@ -0,0 +1,13 @@
> +include_directories(
> + ${GLEXT_INCLUDE_DIR}
> + ${OPENGL_INCLUDE_PATH}
> +)
> +
> +link_libraries (
> + piglitutil_${piglit_target_api}
> + ${OPENGL_gl_LIBRARY}
> +)
> +
> +piglit_add_executable (arb_shader_storage_buffer_object-minmax minmax.c)
> +
> +# vim: ft=cmake:
> diff --git a/tests/spec/arb_shader_storage_buffer_object/CMakeLists.txt b/tests/spec/arb_shader_storage_buffer_object/CMakeLists.txt
> new file mode 100644
> index 0000000..144a306
> --- /dev/null
> +++ b/tests/spec/arb_shader_storage_buffer_object/CMakeLists.txt
> @@ -0,0 +1 @@
> +piglit_include_target_api()
> diff --git a/tests/spec/arb_shader_storage_buffer_object/minmax.c b/tests/spec/arb_shader_storage_buffer_object/minmax.c
> new file mode 100644
> index 0000000..7c53db6
> --- /dev/null
> +++ b/tests/spec/arb_shader_storage_buffer_object/minmax.c
> @@ -0,0 +1,67 @@
> +/*
> + * Copyright © 2015 Aditya Atluri <adityaavinash1 at gmail.com>
> + *
> + * 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_shader_storage_buffer_object.
> + */
> +#include "piglit-util-gl.h"
> +#include "minmax-test.h"
> +
> +PIGLIT_GL_TEST_CONFIG_BEGIN
> +
> + config.supports_gl_compat_version = 40;
> + config.supports_gl_core_version = 40;
> +
> +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_shader_storage_buffer_object");
> + piglit_print_minmax_header();
> +
> + piglit_test_min_int(GL_MAX_VERTEX_SHADER_STORAGE_BLOCKS, 0);
> + piglit_test_min_int(GL_MAX_GEOMETRY_SHADER_STORAGE_BLOCKS, 0);
> + piglit_test_min_int(GL_MAX_TESS_CONTROL_SHADER_STORAGE_BLOCKS, 0);
> + piglit_test_min_int(GL_MAX_TESS_EVALUATION_SHADER_STORAGE_BLOCKS, 0);
> + piglit_test_min_int(GL_MAX_FRAGMENT_SHADER_STORAGE_BLOCKS, 8);
> + piglit_test_min_int(GL_MAX_COMPUTE_SHADER_STORAGE_BLOCKS, 8);
> + piglit_test_min_int(GL_MAX_COMBINED_SHADER_STORAGE_BLOCKS, 8);
> + piglit_test_min_int(GL_MAX_SHADER_STORAGE_BUFFER_BINDINGS, 8);
> + piglit_test_min_int64(GL_MAX_SHADER_STORAGE_BLOCK_SIZE, 16777216); // 2^24
> + piglit_test_max_int(GL_SHADER_STORAGE_BUFFER_OFFSET_ALIGNMENT, 256);
> + piglit_test_min_int(GL_MAX_COMBINED_SHADER_OUTPUT_RESOURCES, 8);
> +
> + if (!piglit_check_gl_error(GL_NO_ERROR))
> + piglit_report_result(PIGLIT_FAIL);
> + piglit_report_result(piglit_minmax_pass ? PIGLIT_PASS : PIGLIT_FAIL);
> +}
> --
> 1.9.1
>
> _______________________________________________
> Piglit mailing list
> Piglit at lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/piglit
More information about the Piglit
mailing list