From d01722b3b03590ea1a19d12702f65af7f421c749 Mon Sep 17 00:00:00 2001 From: Kamil Goras Date: Mon, 16 Oct 2023 14:38:41 +0200 Subject: [PATCH] Added real data for kernel, ranges, sync_point check --- tests/test_openclhpp.cpp | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/tests/test_openclhpp.cpp b/tests/test_openclhpp.cpp index 0f1c6948..e77277a6 100644 --- a/tests/test_openclhpp.cpp +++ b/tests/test_openclhpp.cpp @@ -3631,11 +3631,20 @@ static cl_int clCommandNDRangeKernelKHR_testCommandNDRangeKernel(cl_command_buff TEST_ASSERT_NOT_NULL(sync_point); TEST_ASSERT_EQUAL_PTR(nullptr, mutable_handle); + + TEST_ASSERT_EQUAL_PTR(kernelPool[0](), kernel); + TEST_ASSERT_EQUAL(2, global_work_offset[0]); + TEST_ASSERT_EQUAL(5, global_work_size[0]); + switch (cmock_to_return) { case 0: { TEST_ASSERT_EQUAL_PTR(nullptr, command_queue); + if (sync_point != nullptr) + { + *sync_point = 15; + } return CL_SUCCESS; } case 1: @@ -3652,8 +3661,8 @@ void testCommandNDRangeKernel(void) #if defined(cl_khr_command_buffer) cl::vector properties{ 0,1,2 }; cl::Kernel kernel; - cl::NDRange offset; - cl::NDRange global; + cl::NDRange offset{ 2 }; + cl::NDRange global{ 5 }; cl::NDRange local = cl::NullRange; std::vector sync_points_vec{ 3,2,1 }; cl_sync_point_khr sync_point{ 2 }; @@ -3663,7 +3672,7 @@ void testCommandNDRangeKernel(void) clCommandNDRangeKernelKHR_StubWithCallback(clCommandNDRangeKernelKHR_testCommandNDRangeKernel); cl_int ret = commandBufferKhrPool[0].commandNDRangeKernel( properties, - kernel, + kernelPool[0], offset, global, local, @@ -3672,10 +3681,11 @@ void testCommandNDRangeKernel(void) mutable_handle, command_queue); TEST_ASSERT_EQUAL(ret, CL_SUCCESS); + TEST_ASSERT_EQUAL(15, sync_point); ret = commandBufferKhrPool[0].commandNDRangeKernel( properties, - kernel, + kernelPool[0], offset, global, local,