Skip to content

Commit 0fb7d6d

Browse files
authored
Merge pull request #1024 from 0x12CC/sycl_khr_group_interface_tests
Implement `SYCL_KHR_GROUP_INTERFACE` tests
2 parents 60c299e + 5b1ad73 commit 0fb7d6d

File tree

3 files changed

+408
-0
lines changed

3 files changed

+408
-0
lines changed

CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,10 @@ add_cts_option(SYCL_CTS_ENABLE_KHR_FREE_FUNCTION_COMMANDS
134134
"Enable extension Khronos free_function_commands tests" OFF
135135
FORCE_ON ${SYCL_CTS_ENABLE_KHR_TESTS})
136136

137+
add_cts_option(SYCL_CTS_ENABLE_KHR_GROUP_INTERFACE_TESTS
138+
"Enable extension Khronos group_interface tests" OFF
139+
FORCE_ON ${SYCL_CTS_ENABLE_KHR_TESTS})
140+
137141
add_cts_option(SYCL_CTS_ENABLE_KHR_QUEUE_EMPTY_QUERY_TESTS
138142
"Enable extension Khronos queue_empty_query tests" OFF
139143
FORCE_ON ${SYCL_CTS_ENABLE_KHR_TESTS})
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
if(SYCL_CTS_ENABLE_KHR_GROUP_INTERFACE_TESTS)
2+
file(GLOB test_cases_list *.cpp)
3+
4+
add_cts_test(${test_cases_list})
5+
endif()

0 commit comments

Comments
 (0)