From 539027f8e8d036fdf98c6c5b20e607d939936ac6 Mon Sep 17 00:00:00 2001 From: Mark Danial 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