https://github.com/madanial0 created https://github.com/llvm/llvm-project/pull/164765
These tests not supported on AIX and z/OS, disable them to get the clang-ppc64-aix green >From 539027f8e8d036fdf98c6c5b20e607d939936ac6 Mon Sep 17 00:00:00 2001 From: Mark Danial <[email protected]> Date: Thu, 23 Oct 2025 02:55:00 -0400 Subject: [PATCH] [clang][DebugInfo] Disable objective-CXX tests on AIX and z/OS --- clang/test/DebugInfo/ObjCXX/lit.local.cfg | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 clang/test/DebugInfo/ObjCXX/lit.local.cfg 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 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
