From 0ead5897c25aa5ee0cc4f008b5e73e524aa75833 Mon Sep 17 00:00:00 2001 From: Michael Aziz Date: Wed, 8 May 2024 11:50:13 -0700 Subject: [PATCH] Add `SYCL_CTS_ENABLE_EXT_ONEAPI_ROOT_GROUP_TESTS` option Add a CTS option for enabling root group tests and enable it when `SYCL_CTS_ENABLE_EXT_ONEAPI_TESTS` is on. We forgot this when merging #799. Signed-off-by: Michael Aziz --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7b6046f46..fe28aec87 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -91,6 +91,10 @@ add_cts_option(SYCL_CTS_ENABLE_EXT_ONEAPI_COMPOSITE_DEVICE_TESTS "Enable extension oneAPI composite_device tests" OFF FORCE_ON ${SYCL_CTS_ENABLE_EXT_ONEAPI_TESTS}) +add_cts_option(SYCL_CTS_ENABLE_EXT_ONEAPI_ROOT_GROUP_TESTS + "Enable extension oneAPI root group tests" OFF + FORCE_ON ${SYCL_CTS_ENABLE_EXT_ONEAPI_TESTS}) + # TODO: Deprecated - remove add_cts_option(SYCL_CTS_ENABLE_VERBOSE_LOG "Enable debug-level logs (deprecated)" OFF)