[llvm] [offload][lit] XFAIL failing non-contiguous update tests on Intel (PR #176955)

Nick Sarnie via llvm-commits llvm-commits at lists.llvm.org
Tue Jan 20 08:11:04 PST 2026


https://github.com/sarnex created https://github.com/llvm/llvm-project/pull/176955

The new tests added in https://github.com/llvm/llvm-project/pull/169623 are failing on the Intel GPU runner, so XFAIL them as with the other tests.


>From 96638de518ef4efa3f190d3b239f98d112a12c02 Mon Sep 17 00:00:00 2001
From: "Sarnie, Nick" <nick.sarnie at intel.com>
Date: Tue, 20 Jan 2026 08:08:42 -0800
Subject: [PATCH] [offload][lit] XFAIL failing non-contiguous update tests on
 Intel

Signed-off-by: Sarnie, Nick <nick.sarnie at intel.com>
---
 offload/test/offloading/strided_multiple_update_to.c | 2 ++
 offload/test/offloading/strided_partial_update_to.c  | 2 ++
 offload/test/offloading/strided_update_to.c          | 2 ++
 3 files changed, 6 insertions(+)

diff --git a/offload/test/offloading/strided_multiple_update_to.c b/offload/test/offloading/strided_multiple_update_to.c
index cfe4513514fa9..bb16d7a09269a 100644
--- a/offload/test/offloading/strided_multiple_update_to.c
+++ b/offload/test/offloading/strided_multiple_update_to.c
@@ -3,6 +3,8 @@
 // from the host to the device.
 
 // RUN: %libomptarget-compile-run-and-check-generic
+// XFAIL: intelgpu
+
 #include <omp.h>
 #include <stdio.h>
 
diff --git a/offload/test/offloading/strided_partial_update_to.c b/offload/test/offloading/strided_partial_update_to.c
index e03f3a9f9f607..f9c960fb9c965 100644
--- a/offload/test/offloading/strided_partial_update_to.c
+++ b/offload/test/offloading/strided_partial_update_to.c
@@ -3,6 +3,8 @@
 // across the array
 
 // RUN: %libomptarget-compile-run-and-check-generic
+// XFAIL: intelgpu
+
 #include <omp.h>
 #include <stdio.h>
 
diff --git a/offload/test/offloading/strided_update_to.c b/offload/test/offloading/strided_update_to.c
index 520ac75df61d0..eca20abed4b8d 100644
--- a/offload/test/offloading/strided_update_to.c
+++ b/offload/test/offloading/strided_update_to.c
@@ -4,6 +4,8 @@
 // other element (stride 2) from the host to the device
 
 // RUN: %libomptarget-compile-run-and-check-generic
+// XFAIL: intelgpu
+
 #include <omp.h>
 #include <stdio.h>
 



More information about the llvm-commits mailing list