[Piglit] [PATCH 3/5] arb_compute_shader: Check local ids at various sizes using atomic counters

Jordan Justen jordan.l.justen at intel.com
Sat Sep 19 14:44:33 PDT 2015


Signed-off-by: Jordan Justen <jordan.l.justen at intel.com>
---
 tests/all.py                                    |  1 +
 tests/spec/arb_compute_shader/CMakeLists.gl.txt |  2 +
 tests/spec/arb_compute_shader/local-id.c        | 60 +++++++++++++++++++++++++
 3 files changed, 63 insertions(+)
 create mode 100644 tests/spec/arb_compute_shader/local-id.c

diff --git a/tests/all.py b/tests/all.py
index 8711971..eee86ef 100644
--- a/tests/all.py
+++ b/tests/all.py
@@ -4066,6 +4066,7 @@ with profile.group_manager(
       'built-in constants')
     g(['arb_compute_shader-work_group_size_too_large'],
       grouptools.join('compiler', 'work_group_size_too_large'))
+    g(['arb_compute_shader-local-id'], 'local-id' + '-explosion')
 
 with profile.group_manager(
         PiglitGLTest,
diff --git a/tests/spec/arb_compute_shader/CMakeLists.gl.txt b/tests/spec/arb_compute_shader/CMakeLists.gl.txt
index a91ff8c..6655148 100644
--- a/tests/spec/arb_compute_shader/CMakeLists.gl.txt
+++ b/tests/spec/arb_compute_shader/CMakeLists.gl.txt
@@ -15,4 +15,6 @@ piglit_add_executable (arb_compute_shader-minmax minmax.c)
 
 set(depends cs-ids-common.c common.c)
 
+piglit_add_executable (arb_compute_shader-local-id local-id.c ${depends})
+
 # vim: ft=cmake:
diff --git a/tests/spec/arb_compute_shader/local-id.c b/tests/spec/arb_compute_shader/local-id.c
new file mode 100644
index 0000000..504624b
--- /dev/null
+++ b/tests/spec/arb_compute_shader/local-id.c
@@ -0,0 +1,60 @@
+/*
+ * Copyright (c) 2014 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
+ *
+ * Checks gl_LocalInvocationID at various sizes using atomic counters
+ */
+
+#include "cs-ids-common.h"
+
+static struct piglit_gl_test_config *piglit_config;
+
+PIGLIT_GL_TEST_CONFIG_BEGIN
+	piglit_config = &config;
+	config.supports_gl_compat_version = 33;
+	config.supports_gl_core_version = 33;
+PIGLIT_GL_TEST_CONFIG_END
+
+
+enum piglit_result
+piglit_display(void)
+{
+	return PIGLIT_FAIL;
+}
+
+
+void
+piglit_init(int argc, char **argv)
+{
+	enum piglit_result result;
+
+	cs_ids_common_init();
+	cs_ids_set_local_id_test();
+
+	result = cs_ids_test_all_sizes();
+
+	cs_ids_common_destroy();
+
+	piglit_report_result(result);
+}
-- 
2.5.1



More information about the Piglit mailing list