mirror of
https://github.com/KhronosGroup/OpenCL-CTS.git
synced 2026-03-19 06:09:01 +00:00
Move cl_khr_create_command_queue test to the main api suite (#521)
In theory, it could exist on a 2.x implementation. Signed-off-by: Kevin Petit <kevin.petit@arm.com>
This commit is contained in:
@@ -22,6 +22,7 @@ set(${MODULE_NAME}_SOURCES
|
||||
test_null_buffer_arg.c
|
||||
test_mem_object_info.cpp
|
||||
test_queue_hint.cpp
|
||||
test_queue_properties.cpp
|
||||
test_sub_group_dispatch.cpp
|
||||
test_clone_kernel.cpp
|
||||
test_zero_sized_enqueue.cpp
|
||||
|
||||
@@ -117,6 +117,7 @@ test_definition test_list[] = {
|
||||
ADD_TEST( get_image1d_array_info ),
|
||||
ADD_TEST( get_image2d_array_info ),
|
||||
ADD_TEST( queue_hint ),
|
||||
ADD_TEST( queue_properties ),
|
||||
ADD_TEST_VERSION( sub_group_dispatch, Version(2, 1) ),
|
||||
ADD_TEST_VERSION( clone_kernel, Version(2, 1) ),
|
||||
ADD_TEST_VERSION( zero_sized_enqueue, Version(2, 1) ),
|
||||
|
||||
@@ -111,3 +111,4 @@ extern int test_queue_hint(cl_device_id deviceID, cl_context context, cl_co
|
||||
extern int test_sub_group_dispatch(cl_device_id deviceID, cl_context context, cl_command_queue queue, int num_elements);
|
||||
extern int test_clone_kernel(cl_device_id deviceID, cl_context context, cl_command_queue queue, int num_elements);
|
||||
extern int test_zero_sized_enqueue(cl_device_id deviceID, cl_context context, cl_command_queue queue, int num_elements);
|
||||
extern int test_queue_properties( cl_device_id deviceID, cl_context context, cl_command_queue queue, int num_elements );
|
||||
|
||||
@@ -4,7 +4,6 @@ set(${MODULE_NAME}_SOURCES
|
||||
main.c
|
||||
test_mem_object_info.cpp
|
||||
test_kernel_arg_info.c
|
||||
test_queue_properties.cpp
|
||||
)
|
||||
|
||||
set(${MODULE_NAME}_LIBS harness-compat)
|
||||
|
||||
@@ -39,7 +39,6 @@ test_definition test_list[] = {
|
||||
ADD_TEST( get_image1d_info ),
|
||||
ADD_TEST( get_image1d_array_info ),
|
||||
ADD_TEST( get_image2d_array_info ),
|
||||
ADD_TEST( queue_properties ),
|
||||
};
|
||||
|
||||
const int test_num = ARRAY_SIZE( test_list );
|
||||
|
||||
@@ -105,5 +105,4 @@ extern int test_get_image1d_info( cl_device_id deviceID, cl_context context
|
||||
extern int test_get_image1d_array_info( cl_device_id deviceID, cl_context context, cl_command_queue ignoreQueue, int num_elements );
|
||||
extern int test_get_image2d_array_info( cl_device_id deviceID, cl_context context, cl_command_queue ignoreQueue, int num_elements );
|
||||
extern int test_get_kernel_arg_info( cl_device_id deviceID, cl_context context, cl_command_queue queue, int num_elements );
|
||||
extern int test_queue_properties( cl_device_id deviceID, cl_context context, cl_command_queue queue, int num_elements );
|
||||
|
||||
|
||||
Reference in New Issue
Block a user