[clang] a85cbe8 - Disable autolink_private_module.m for z/OS & AIX

David Tenty via cfe-commits cfe-commits at lists.llvm.org
Tue Jan 9 07:33:58 PST 2024


Author: Zibi Sarbinowski
Date: 2024-01-09T10:33:45-05:00
New Revision: a85cbe8f9036c8771fbf61335eb288eaefcda365

URL: https://github.com/llvm/llvm-project/commit/a85cbe8f9036c8771fbf61335eb288eaefcda365
DIFF: https://github.com/llvm/llvm-project/commit/a85cbe8f9036c8771fbf61335eb288eaefcda365.diff

LOG: Disable autolink_private_module.m for z/OS & AIX

This change disables it on z/OS and AIX since it fails on both platforms with:
fatal error: error in backend: Objective-C support is unimplemented for object file format

Added: 
    

Modified: 
    clang/test/Modules/autolink_private_module.m

Removed: 
    


################################################################################
diff  --git a/clang/test/Modules/autolink_private_module.m b/clang/test/Modules/autolink_private_module.m
index 54bebc3a587b1b..f83f0a26b5309a 100644
--- a/clang/test/Modules/autolink_private_module.m
+++ b/clang/test/Modules/autolink_private_module.m
@@ -1,4 +1,6 @@
 // Test that autolink hints for frameworks don't use the private module name.
+// UNSUPPORTED: target={{.*}}-zos{{.*}}, target={{.*}}-aix{{.*}}
+
 // RUN: rm -rf %t && mkdir %t
 // RUN: split-file %s %t
 


        


More information about the cfe-commits mailing list