Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 01e67f8

Browse files
authoredMay 19, 2025··
[SYCL][E2E][CI] Disable std_array.cpp at CI level (#18545)
The issue is specific to the post-commit CI using OneAPI compiler to build SYCL RT (see #18458). Ideally, we'd like to use `/Qno-intel-lib` during such build but OneAPI seems to have a bug related to that (reported internally). It will take an official release for it to reach this CI even after it's implemented, so we need to disable the test on that specific configuration only for the time being.
1 parent 95df4ec commit 01e67f8

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed
 

‎.github/workflows/sycl-post-commit.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,8 @@ jobs:
120120
target_devices: "level_zero:gpu"
121121
sycl_toolchain_archive: ${{ needs.build-win.outputs.artifact_archive_name }}
122122
cxx: icx
123+
# https://github.com/intel/llvm/issues/18458
124+
env: "{'LIT_FILTER_OUT':'std_array.cpp|compile_on_win_with_mdd.cpp'}"
123125

124126
macos_default:
125127
name: macOS

‎devops/actions/run-tests/windows/e2e/action.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,6 @@ runs:
7777
LIT_OPTS: -v --no-progress-bar --show-unsupported --show-pass --show-xfail --max-time ${{ inputs.e2e_testing_mode == 'run-only' && 1200 || 3600 }} --time-tests --param print_features=True --param test-mode=${{ inputs.testing_mode }} --param sycl_devices=${{ inputs.target_devices }} ${{ inputs.extra_lit_opts }}
7878
run: |
7979
# Run E2E tests.
80-
if [[ ${{ inputs.cxx }} == 'icx' ]]; then
81-
export LIT_FILTER_OUT="compile_on_win_with_mdd"
82-
fi
8380
cmake --build build-e2e --target check-sycl-e2e > e2e.log 2>&1
8481
8582
exit_code=$?

‎sycl/test-e2e/Basic/std_array.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
// Check that std::array is supported on device in debug mode on Windows.
22

33
// REQUIRES: windows
4-
// UNSUPPORTED: gpu-intel-gen12
5-
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/18458
64

75
// RUN: %clangxx --driver-mode=cl -fsycl -o %t.exe %s /Od /MDd /Zi /EHsc
86
// RUN: %{run} %t.exe

0 commit comments

Comments
 (0)
Please sign in to comment.