Skip to content

Commit d542cfe

Browse files
committed
Update UNSUPPORTED
1 parent bd7d43b commit d542cfe

11 files changed

+32
-2
lines changed

sycl/test-e2e/Basic/buffer/buffer_full_copy.cpp

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
// RUN: %{build} -o %t2.out
2-
// RUN: %{run} %t2.out
1+
// RUN: %{build} -o %t.out
2+
// RUN: %{run} %t.out
3+
4+
// XFAIL: run-mode && linux && arch-intel_gpu_pvc && level_zero_v2_adapter
5+
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/19585
36

47
//==------------- buffer_full_copy.cpp - SYCL buffer basic test ------------==//
58
//

sycl/test-e2e/Basic/fill_accessor.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
// RUN: %{build} -o %t.out
22
// RUN: %{run} %t.out
33

4+
// XFAIL: run-mode && linux && arch-intel_gpu_pvc && level_zero_v2_adapter
5+
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/19585
6+
7+
// XFAIL: run-mode && linux && arch-intel_gpu_bmg_g21 && level_zero_v2_adapter
8+
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/19586
9+
410
#include <sycl/detail/core.hpp>
511

612
#include <algorithm>

sycl/test-e2e/Basic/fill_accessor_ur.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
// RUN: %{build} -o %t.out
22
// RUN: env SYCL_UR_TRACE=2 %{run} %t.out | FileCheck %s
33

4+
// XFAIL: run-mode && linux && arch-intel_gpu_pvc && level_zero_v2_adapter
5+
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/19585
6+
47
// This test merely checks the use of the correct UR call. Its sister test
58
// fill_accessor.cpp thoroughly checks the workings of the .fill() call.
69

sycl/test-e2e/Basic/handler/handler_mem_op.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
// RUN: %{build} -o %t.out
22
// RUN: %{run} %t.out
33

4+
// XFAIL: run-mode && linux && arch-intel_gpu_pvc && level_zero_v2_adapter
5+
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/19585
6+
47
//==- handler.cpp - SYCL handler explicit memory operations test -*- C++-*--==//
58
//
69
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.

sycl/test-e2e/Basic/queue/queue_shortcut_functions.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
// RUN: %{build} -o %t.out
22
// RUN: %{run} %t.out
33

4+
// XFAIL: run-mode && linux && arch-intel_gpu_pvc && level_zero_v2_adapter
5+
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/19585
6+
47
//==-- queue_shortcut_functions.cpp - SYCL queue shortcut functions test ---==//
58
//
69
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.

sycl/test-e2e/MemorySanitizer/track-origins/check_host_usm.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
// REQUIRES: linux, cpu || (gpu && level_zero)
2+
// XFAIL: run-mode && linux && arch-intel_gpu_pvc && level_zero_v2_adapter
3+
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/19585
24

35
// RUN: %{build} %device_msan_flags -Xarch_device -fsanitize-memory-track-origins=1 -O0 -g -o %t1.out
46
// RUN: env UR_LAYER_MSAN_OPTIONS=msan_check_host_and_shared_usm:1 %{run} %t1.out 2>&1 | FileCheck %s --check-prefixes CHECK,CHECK-ORIGIN-STACK

sycl/test-e2e/MemorySanitizer/track-origins/check_host_usm_initialized_on_host.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
// REQUIRES: linux, cpu || (gpu && level_zero)
2+
// XFAIL: run-mode && linux && arch-intel_gpu_pvc && level_zero_v2_adapter
3+
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/19585
24

35
// RUN: %{build} %device_msan_flags -Xarch_device -fsanitize-memory-track-origins=1 -O0 -g -o %t0.out
46
// RUN: env UR_LAYER_MSAN_OPTIONS=msan_check_host_and_shared_usm:1 %{run} %t0.out 2>&1 | FileCheck %s --check-prefixes CHECK,CHECK-ORIGIN-STACK

sycl/test-e2e/MemorySanitizer/track-origins/check_kernel_memcpy.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
// REQUIRES: linux, cpu || (gpu && level_zero)
2+
// XFAIL: run-mode && linux && arch-intel_gpu_pvc && level_zero_v2_adapter
3+
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/19585
24

35
// RUN: %{build} %device_msan_flags -Xarch_device -fsanitize-memory-track-origins=1 -O2 -g -o %t1.out
46
// RUN: env UR_LAYER_MSAN_OPTIONS=msan_check_host_and_shared_usm:1 %{run} %t1.out 2>&1 | FileCheck %s

sycl/test-e2e/MemorySanitizer/track-origins/check_kernel_memmove_no_overlap.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
// REQUIRES: linux, cpu || (gpu && level_zero)
2+
// XFAIL: run-mode && linux && arch-intel_gpu_pvc && level_zero_v2_adapter
3+
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/19585
24

35
// RUN: %{build} %device_msan_flags -Xarch_device -fsanitize-memory-track-origins=1 -O0 -g -o %t0.out
46
// RUN: env UR_LAYER_MSAN_OPTIONS=msan_check_host_and_shared_usm:1 %{run} %t0.out 2>&1 | FileCheck %s --check-prefixes CHECK,CHECK-ORIGIN-STACK

sycl/test-e2e/MemorySanitizer/track-origins/check_kernel_memmove_overlap.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
// REQUIRES: linux, cpu || (gpu && level_zero)
2+
// XFAIL: run-mode && linux && arch-intel_gpu_pvc && level_zero_v2_adapter
3+
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/19585
24

35
// RUN: %{build} %device_msan_flags -Xarch_device -fsanitize-memory-track-origins=1 -O0 -g -o %t0.out
46
// RUN: env UR_LAYER_MSAN_OPTIONS=msan_check_host_and_shared_usm:1 %{run} %t0.out 2>&1 | FileCheck %s --check-prefixes CHECK,CHECK-ORIGIN-STACK

0 commit comments

Comments
 (0)