Skip to content

Commit ac3a03e

Browse files
Change SYCL_PI_TESTS to SYCL_UR_TESTS in CI (#16010)
`SYCL_PI_TESTS` was deprecated and changed to `SYCL_UR_TESTS`.
1 parent 6d1f4fc commit ac3a03e

File tree

3 files changed

+2
-10
lines changed

3 files changed

+2
-10
lines changed

.github/workflows/sycl-linux-build.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,6 @@ jobs:
169169
--cmake-opt=-DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
170170
--cmake-opt="-DLLVM_INSTALL_UTILS=ON" \
171171
--cmake-opt="-DNATIVECPU_USE_OCK=Off" \
172-
--cmake-opt="-DSYCL_PI_TESTS=OFF" \
173172
--cmake-opt="-DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD=SPIRV"
174173
- name: Compile
175174
id: build

.github/workflows/sycl-macos-build-and-test.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ jobs:
5252
--ci-defaults $ARGS \
5353
--cmake-opt=-DCMAKE_C_COMPILER_LAUNCHER=ccache \
5454
--cmake-opt=-DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
55-
--cmake-opt="-DLLVM_INSTALL_UTILS=ON" \
56-
--cmake-opt="-DSYCL_PI_TESTS=OFF"
55+
--cmake-opt="-DLLVM_INSTALL_UTILS=ON"
5756
- name: Compile
5857
run: cmake --build $GITHUB_WORKSPACE/build --target deploy-sycl-toolchain

sycl/unittests/CMakeLists.txt

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,7 @@ include(AddSYCLUnitTest)
2525

2626
add_custom_target(check-sycl-unittests)
2727

28-
# TODO UR tests require real hardware and must be moved to sycl/test-e2e.
29-
option(SYCL_UR_TESTS "Enable UR-specific unit tests" OFF)
30-
31-
if (SYCL_UR_TESTS)
32-
add_subdirectory(ur)
33-
endif()
34-
28+
add_subdirectory(ur)
3529
add_subdirectory(allowlist)
3630
add_subdirectory(config)
3731
add_subdirectory(misc)

0 commit comments

Comments
 (0)