[llvm] [Offload] XFAIL pgo tests until resolved (PR #163722)

Jan Patrick Lehr via llvm-commits llvm-commits at lists.llvm.org
Thu Oct 16 01:08:57 PDT 2025


https://github.com/jplehr created https://github.com/llvm/llvm-project/pull/163722

While people look into it, xfail the tests.

>From b526f2eef2074be1d89f36a5386bcc804e14d081 Mon Sep 17 00:00:00 2001
From: JP Lehr <JanPatrick.Lehr at amd.com>
Date: Thu, 16 Oct 2025 02:48:43 -0500
Subject: [PATCH] [Offload] XFAIL pgo tests until resolved

While people look into it, xfail the tests.
---
 offload/test/offloading/gpupgo/pgo_atomic_teams.c    | 1 +
 offload/test/offloading/gpupgo/pgo_atomic_threads.c  | 1 +
 offload/test/offloading/gpupgo/pgo_device_and_host.c | 1 +
 offload/test/offloading/gpupgo/pgo_device_only.c     | 1 +
 4 files changed, 4 insertions(+)

diff --git a/offload/test/offloading/gpupgo/pgo_atomic_teams.c b/offload/test/offloading/gpupgo/pgo_atomic_teams.c
index b3b72db080392..42d8ae43beba1 100644
--- a/offload/test/offloading/gpupgo/pgo_atomic_teams.c
+++ b/offload/test/offloading/gpupgo/pgo_atomic_teams.c
@@ -18,6 +18,7 @@
 
 // REQUIRES: amdgpu
 // REQUIRES: pgo
+// XFAIL: amdgpu
 
 int test1(int a) { return a / 2; }
 int test2(int a) { return a * 2; }
diff --git a/offload/test/offloading/gpupgo/pgo_atomic_threads.c b/offload/test/offloading/gpupgo/pgo_atomic_threads.c
index 440a6b533317d..09a4dc1577822 100644
--- a/offload/test/offloading/gpupgo/pgo_atomic_threads.c
+++ b/offload/test/offloading/gpupgo/pgo_atomic_threads.c
@@ -18,6 +18,7 @@
 
 // REQUIRES: amdgpu
 // REQUIRES: pgo
+// XFAIL: amdgpu
 
 int test1(int a) { return a / 2; }
 
diff --git a/offload/test/offloading/gpupgo/pgo_device_and_host.c b/offload/test/offloading/gpupgo/pgo_device_and_host.c
index 3e95791ce9a50..c53e69a25e50d 100644
--- a/offload/test/offloading/gpupgo/pgo_device_and_host.c
+++ b/offload/test/offloading/gpupgo/pgo_device_and_host.c
@@ -50,6 +50,7 @@
 
 // REQUIRES: amdgpu
 // REQUIRES: pgo
+// XFAIL: amdgpu
 
 int main() {
   int host_var = 0;
diff --git a/offload/test/offloading/gpupgo/pgo_device_only.c b/offload/test/offloading/gpupgo/pgo_device_only.c
index 2939af613b6dd..644df6e7b0339 100644
--- a/offload/test/offloading/gpupgo/pgo_device_only.c
+++ b/offload/test/offloading/gpupgo/pgo_device_only.c
@@ -16,6 +16,7 @@
 
 // REQUIRES: amdgpu
 // REQUIRES: pgo
+// XFAIL: amdgpu
 
 int test1(int a) { return a / 2; }
 int test2(int a) { return a * 2; }



More information about the llvm-commits mailing list