[Piglit] [PATCH 2/2] cl: Fix link program tests

Jan Vesely jan.vesely at rutgers.edu
Thu Sep 21 15:14:11 UTC 2017


f() is deprecated unprototyped declaration use f(void) instead.
funnction call requires a prototype.

Signed-off-by: Jan Vesely <jan.vesely at rutgers.edu>
---
 tests/cl/api/link-program.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/tests/cl/api/link-program.c b/tests/cl/api/link-program.c
index 48563a10c..c1734ebb1 100644
--- a/tests/cl/api/link-program.c
+++ b/tests/cl/api/link-program.c
@@ -51,10 +51,10 @@ PIGLIT_CL_API_TEST_CONFIG_END
 
 
 const char* strings[] = {
-	"int get_number() { return 42; }\n",
-	"int get_number();\n",
-	"kernel void test_kernel() { int i = get_number(); }\n",
-	"int get_number() { return 0; }\n"
+	"int get_number(void) { return 42; }\n",
+	"int get_number(void);\n",
+	"kernel void test_kernel(void) { int i = get_number(); }\n",
+	"int get_number(void) { return 0; }\n"
 };
 
 #if defined(CL_VERSION_1_2)
@@ -388,8 +388,8 @@ piglit_cl_test(const int argc,
 	                                "2nd function program");
 	kernel_prog = compile_program(env->context->cl_ctx,
 	                              env->context->num_devices, env->context->device_ids,
-	                              2, &strings[2],
-                                 "2nd kernel program");
+	                              3, &strings[1],
+	                              "2nd kernel program");
 
 	if (!function_prog || !kernel_prog) {
 		result = PIGLIT_FAIL;
-- 
2.13.5



More information about the Piglit mailing list