Skip to content

Commit 2a8567a

Browse files
committed
Add XFAIL to more tests
1 parent 4b7e2c9 commit 2a8567a

File tree

6 files changed

+14
-8
lines changed

6 files changed

+14
-8
lines changed

sycl/test-e2e/AddressSanitizer/common/kernel-filter.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@
44
// RUN: %{build} %device_asan_aot_flags -O2 -fsanitize-ignorelist=%p/ignorelist.txt -o %t2
55
// RUN: %{run} %t2 2>&1 | FileCheck %s
66

7-
// XFAIL: arch-intel_gpu_pvc
8-
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/16401
9-
107
#include <sycl/detail/core.hpp>
118
#include <sycl/usm.hpp>
129

sycl/test-e2e/AddressSanitizer/out-of-bounds/DeviceGlobal/device_global.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66
// RUN: %{build} %device_asan_flags -O2 -g -o %t3.out
77
// RUN: %{run} not %t3.out 2>&1 | FileCheck %s
88

9+
// Flakily timesout on PVC
10+
// UNSUPPORTED: arch-intel_gpu_pvc
11+
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/16401
12+
913
#include <sycl/detail/core.hpp>
1014

1115
#include <sycl/ext/oneapi/device_global/device_global.hpp>

sycl/test-e2e/Basic/accessor/accessor.cpp

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

4+
// Test flakily fails on PVC.
5+
// UNSUPPORTED: arch-intel_gpu_pvc
6+
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/16401
7+
48
//==----------------accessor.cpp - SYCL accessor basic test ----------------==//
59
//
610
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.

sycl/test-e2e/MemorySanitizer/lit.local.cfg

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# TRACKER: https://github.com/intel/llvm/issues/16184
2-
has_arch_gpu_intel_pvc = any('arch-intel_gpu_pvc' in T for T in config.sycl_dev_features.values())
3-
if not has_arch_gpu_intel_pvc:
4-
config.unsupported_features += ['gpu']
2+
# TRACKER for PVC: https://github.com/intel/llvm/issues/16401
3+
#has_arch_gpu_intel_pvc = any('arch-intel_gpu_pvc' in T for T in config.sycl_dev_features.values())
4+
#if not has_arch_gpu_intel_pvc:
5+
config.unsupported_features += ['gpu']
56

67
config.substitutions.append(
78
("%device_msan_flags", "-Xarch_device -fsanitize=memory")

sycl/test-e2e/OnlineCompiler/online_compiler_L0.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// REQUIRES: level_zero, level_zero_dev_kit, cm-compiler
2-
// XFAIL: gpu
2+
// XFAIL: gpu && !arch-intel_gpu_pvc || !igc-dev
33
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/16406
44
// RUN: %{build} -Wno-error=deprecated-declarations -DRUN_KERNELS %level_zero_options -o %t.out
55
// RUN: %{run} %t.out

sycl/test-e2e/OnlineCompiler/online_compiler_OpenCL.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// REQUIRES: opencl, opencl_icd, cm-compiler
2-
// XFAIL: gpu || cpu || accelerator
2+
// XFAIL: !arch-intel_gpu_pvc || !igc-dev
33
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/16406
44
// RUN: %{build} -Wno-error=deprecated-declarations -DRUN_KERNELS %opencl_lib -o %t.out
55
// RUN: %{run} %t.out

0 commit comments

Comments
 (0)