[clang] 0796869 - [AIX] Disable unsupported offloading gpu tests
Jake Egan via cfe-commits
cfe-commits at lists.llvm.org
Thu Nov 25 12:10:57 PST 2021
Author: Jake Egan
Date: 2021-11-25T15:10:51-05:00
New Revision: 0796869e4e1e517a0f77f8e84d94e1e3525b1061
URL: https://github.com/llvm/llvm-project/commit/0796869e4e1e517a0f77f8e84d94e1e3525b1061
DIFF: https://github.com/llvm/llvm-project/commit/0796869e4e1e517a0f77f8e84d94e1e3525b1061.diff
LOG: [AIX] Disable unsupported offloading gpu tests
GPUs are not supported on AIX, so this patch sets these tests as unsupported.
Reviewed By: stevewan
Differential Revision: https://reviews.llvm.org/D114381
Added:
Modified:
clang/test/Driver/clang-offload-bundler-asserts-on.c
clang/test/Driver/clang-offload-bundler.c
clang/test/Driver/openmp-offload-gpu.c
Removed:
################################################################################
diff --git a/clang/test/Driver/clang-offload-bundler-asserts-on.c b/clang/test/Driver/clang-offload-bundler-asserts-on.c
index c11028d16343a..7622998c9c182 100644
--- a/clang/test/Driver/clang-offload-bundler-asserts-on.c
+++ b/clang/test/Driver/clang-offload-bundler-asserts-on.c
@@ -1,6 +1,6 @@
// REQUIRES: x86-registered-target
// REQUIRES: asserts
-// UNSUPPORTED: darwin
+// UNSUPPORTED: darwin, aix
// Generate the file we can bundle.
// RUN: %clang -O0 -target %itanium_abi_triple %s -c -o %t.o
diff --git a/clang/test/Driver/clang-offload-bundler.c b/clang/test/Driver/clang-offload-bundler.c
index 9eb305d4d0eeb..a307af4473a1d 100644
--- a/clang/test/Driver/clang-offload-bundler.c
+++ b/clang/test/Driver/clang-offload-bundler.c
@@ -1,6 +1,6 @@
// REQUIRES: x86-registered-target
// REQUIRES: powerpc-registered-target
-// UNSUPPORTED: darwin
+// UNSUPPORTED: darwin, aix
//
// Generate all the types of files we can bundle.
diff --git a/clang/test/Driver/openmp-offload-gpu.c b/clang/test/Driver/openmp-offload-gpu.c
index b1ab7888d5652..dd62b1e5a0760 100644
--- a/clang/test/Driver/openmp-offload-gpu.c
+++ b/clang/test/Driver/openmp-offload-gpu.c
@@ -8,6 +8,8 @@
// REQUIRES: nvptx-registered-target
// REQUIRES: amdgpu-registered-target
+// UNSUPPORTED: aix
+
/// ###########################################################################
/// Check -Xopenmp-target uses one of the archs provided when several archs are used.
More information about the cfe-commits
mailing list