[clang] 90489ad - [clang][DebugInfo] Disable objective-CXX tests on AIX and z/OS (#164765)
via cfe-commits
cfe-commits at lists.llvm.org
Mon Oct 27 12:08:57 PDT 2025
Author: Mark Danial
Date: 2025-10-27T15:08:53-04:00
New Revision: 90489adf7a9944f53e7be411bab92174d9e069d1
URL: https://github.com/llvm/llvm-project/commit/90489adf7a9944f53e7be411bab92174d9e069d1
DIFF: https://github.com/llvm/llvm-project/commit/90489adf7a9944f53e7be411bab92174d9e069d1.diff
LOG: [clang][DebugInfo] Disable objective-CXX tests on AIX and z/OS (#164765)
These tests not supported on AIX and z/OS, disable them to get the
clang-ppc64-aix green
Added:
clang/test/DebugInfo/ObjCXX/lit.local.cfg
Modified:
Removed:
################################################################################
diff --git a/clang/test/DebugInfo/ObjCXX/lit.local.cfg b/clang/test/DebugInfo/ObjCXX/lit.local.cfg
new file mode 100644
index 0000000000000..8d5c476a2f682
--- /dev/null
+++ b/clang/test/DebugInfo/ObjCXX/lit.local.cfg
@@ -0,0 +1,5 @@
+# objective-CXX is not supported on AIX and zOS
+unsupported_platforms = [ "system-aix", "system-zos" ]
+
+if any(up in config.available_features for up in unsupported_platforms):
+ config.unsupported = True
More information about the cfe-commits
mailing list