Author: Alexis Engelke Date: 2026-01-07T09:49:30Z New Revision: ad2c2b2b1c6bb95f58150cdf172785cabef40d4a
URL: https://github.com/llvm/llvm-project/commit/ad2c2b2b1c6bb95f58150cdf172785cabef40d4a DIFF: https://github.com/llvm/llvm-project/commit/ad2c2b2b1c6bb95f58150cdf172785cabef40d4a.diff LOG: [Clang][NFC] XFAIL plugin tests on AIX See: https://github.com/llvm/llvm-project/pull/171872#issuecomment-3716175811 Added: Modified: clang/test/CodeGen/codegen-plugins.c clang/test/CodeGen/pass-plugins.c Removed: ################################################################################ diff --git a/clang/test/CodeGen/codegen-plugins.c b/clang/test/CodeGen/codegen-plugins.c index 5a9553540cda4..1506563f49295 100644 --- a/clang/test/CodeGen/codegen-plugins.c +++ b/clang/test/CodeGen/codegen-plugins.c @@ -4,6 +4,8 @@ // RUN: not %clang_cc1 -emit-obj < %s -fpass-plugin=%llvmshlibdir/Bye%pluginext -mllvm -last-words 2>&1 | FileCheck %s --check-prefix=CHECK-ERR // REQUIRES: plugins, llvm-examples // UNSUPPORTED: target={{.*windows.*}} +// Plugins are currently broken on AIX, at least in the CI. +// XFAIL: target={{.*}}-aix{{.*}} // CHECK-INACTIVE-NOT: Bye // CHECK-ACTIVE: CodeGen Bye // CHECK-LLVM: define{{.*}} i32 @f diff --git a/clang/test/CodeGen/pass-plugins.c b/clang/test/CodeGen/pass-plugins.c index 9a8ca7b49dff4..a87e36c7c725c 100644 --- a/clang/test/CodeGen/pass-plugins.c +++ b/clang/test/CodeGen/pass-plugins.c @@ -2,6 +2,8 @@ // RUN: %clang_cc1 -S < %s -fpass-plugin=%llvmshlibdir/Bye%pluginext -O2 -mllvm -wave-goodbye 2>&1 | FileCheck %s --check-prefix=CHECK-ACTIVE // REQUIRES: plugins, llvm-examples // UNSUPPORTED: target={{.*windows.*}} +// Plugins are currently broken on AIX, at least in the CI. +// XFAIL: target={{.*}}-aix{{.*}} // CHECK-INACTIVE-NOT: Bye // CHECK-ACTIVE: Bye: f _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
