Skip to content

Commit

Permalink
Remove EXT prefix and fix test tag
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Aziz <[email protected]>
  • Loading branch information
0x12CC committed Oct 16, 2024
1 parent cfbd17a commit 7325477
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ add_cts_option(SYCL_CTS_ENABLE_DEPRECATED_FEATURES_TESTS
add_cts_option(SYCL_CTS_ENABLE_EXT_ONEAPI_TESTS
"Enable all extension oneAPI tests" OFF)

add_cts_option(SYCL_CTS_ENABLE_EXT_KHR_TESTS
add_cts_option(SYCL_CTS_ENABLE_KHR_TESTS
"Enable all extension Khronos tests" OFF)

add_cts_option(SYCL_CTS_ENABLE_EXT_ONEAPI_PROPERTIES_TESTS
Expand Down Expand Up @@ -106,9 +106,9 @@ add_cts_option(SYCL_CTS_ENABLE_EXT_ONEAPI_ENQUEUE_FUNCTIONS_TESTS
"Enable extension oneAPI enqueue_functions tests" OFF
FORCE_ON ${SYCL_CTS_ENABLE_EXT_ONEAPI_TESTS})

add_cts_option(SYCL_CTS_ENABLE_EXT_KHR_DEFAULT_CONTEXT_TESTS
add_cts_option(SYCL_CTS_ENABLE_KHR_DEFAULT_CONTEXT_TESTS
"Enable extension Khronos default_context tests" OFF
FORCE_ON ${SYCL_CTS_ENABLE_EXT_KHR_TESTS})
FORCE_ON ${SYCL_CTS_ENABLE_KHR_TESTS})

# TODO: Deprecated - remove
add_cts_option(SYCL_CTS_ENABLE_VERBOSE_LOG
Expand Down
2 changes: 1 addition & 1 deletion tests/extension/khr_default_context/default_context.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ static void testQueueConstructors() {
#endif

TEST_CASE("Test case for \"Default Context\" extension",
"[khr_default_context") {
"[khr_default_context]") {
#ifndef SYCL_KHR_DEFAULT_CONTEXT
SKIP("SYCL_KHR_DEFAULT_CONTEXT is not defined");
#else
Expand Down

0 comments on commit 7325477

Please sign in to comment.