From 4ffd6db457ac453c403916c8b77328e610925854 Mon Sep 17 00:00:00 2001 From: omarahmed1111 Date: Fri, 8 Nov 2024 17:13:57 +0000 Subject: [PATCH] Remove SYCL_UR_TESTS option --- .github/workflows/sycl-linux-build.yml | 1 - .github/workflows/sycl-macos-build-and-test.yml | 1 - sycl/unittests/CMakeLists.txt | 8 +------- 3 files changed, 1 insertion(+), 9 deletions(-) diff --git a/.github/workflows/sycl-linux-build.yml b/.github/workflows/sycl-linux-build.yml index b360a6b71ec0..0dc956dfea75 100644 --- a/.github/workflows/sycl-linux-build.yml +++ b/.github/workflows/sycl-linux-build.yml @@ -169,7 +169,6 @@ jobs: --cmake-opt=-DCMAKE_CXX_COMPILER_LAUNCHER=ccache \ --cmake-opt="-DLLVM_INSTALL_UTILS=ON" \ --cmake-opt="-DNATIVECPU_USE_OCK=Off" \ - --cmake-opt="-DSYCL_UR_TESTS=OFF" \ --cmake-opt="-DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD=SPIRV" - name: Compile id: build diff --git a/.github/workflows/sycl-macos-build-and-test.yml b/.github/workflows/sycl-macos-build-and-test.yml index 374f29264be2..2049d02d2dfe 100644 --- a/.github/workflows/sycl-macos-build-and-test.yml +++ b/.github/workflows/sycl-macos-build-and-test.yml @@ -53,6 +53,5 @@ jobs: --cmake-opt=-DCMAKE_C_COMPILER_LAUNCHER=ccache \ --cmake-opt=-DCMAKE_CXX_COMPILER_LAUNCHER=ccache \ --cmake-opt="-DLLVM_INSTALL_UTILS=ON" \ - --cmake-opt="-DSYCL_UR_TESTS=OFF" - name: Compile run: cmake --build $GITHUB_WORKSPACE/build --target deploy-sycl-toolchain diff --git a/sycl/unittests/CMakeLists.txt b/sycl/unittests/CMakeLists.txt index 29d7b22d5639..8831426784de 100644 --- a/sycl/unittests/CMakeLists.txt +++ b/sycl/unittests/CMakeLists.txt @@ -25,13 +25,7 @@ include(AddSYCLUnitTest) add_custom_target(check-sycl-unittests) -# TODO UR tests require real hardware and must be moved to sycl/test-e2e. -option(SYCL_UR_TESTS "Enable UR-specific unit tests" OFF) - -if (SYCL_UR_TESTS) - add_subdirectory(ur) -endif() - +add_subdirectory(ur) add_subdirectory(allowlist) add_subdirectory(config) add_subdirectory(misc)