[clang] 44c5dab - [clang-installapi] Add test for -Xproject -fvisibility=* (#162908)

via cfe-commits cfe-commits at lists.llvm.org
Fri Oct 10 14:39:48 PDT 2025


Author: Cyndy Ishida
Date: 2025-10-10T14:39:44-07:00
New Revision: 44c5dabea33f77ff18a4d4a9771148619604c7c8

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

LOG: [clang-installapi] Add test for -Xproject -fvisibility=* (#162908)

Added: 
    clang/test/InstallAPI/project-header-only-args-visibility.test

Modified: 
    

Removed: 
    


################################################################################
diff  --git a/clang/test/InstallAPI/project-header-only-args-visibility.test b/clang/test/InstallAPI/project-header-only-args-visibility.test
new file mode 100644
index 0000000000000..0403487ae8642
--- /dev/null
+++ b/clang/test/InstallAPI/project-header-only-args-visibility.test
@@ -0,0 +1,69 @@
+; RUN: rm -rf %t
+; RUN: split-file %s %t
+; RUN: sed -e "s|DSTROOT|%/t|g" %t/inputs.json.in > %t/inputs.json
+
+; RUN: clang-installapi \
+; RUN: -target arm64-apple-macos26 -install_name @rpath/libfoo.dylib \
+; RUN: -current_version 1 -compatibility_version 1 \
+; RUN: -Xproject -fvisibility=hidden -I%t/usr/include \
+; RUN: -I%t -dynamiclib  %t/inputs.json \
+; RUN: -o %t/output.tbd 2>&1 | FileCheck %s --allow-empty
+; RUN: llvm-readtapi --compare %t/output.tbd %t/expected.tbd 2>&1 | FileCheck %s --allow-empty
+
+; CHECK-NOT: error
+; CHECK-NOT: warning
+
+//--- usr/include/public.h
+int foo(void);
+
+//--- project.h
+int bar(void);
+
+//--- expected.tbd
+{
+  "main_library": {
+    "exported_symbols": [
+      {
+        "text": {
+          "global": [
+            "_foo"
+          ]
+        }
+      }
+    ],
+    "flags": [
+      {
+        "attributes": [
+          "not_app_extension_safe"
+        ]
+      }
+    ],
+    "install_names": [
+      {
+        "name": "@rpath/libfoo.dylib"
+      }
+    ],
+    "target_info": [
+      {
+        "min_deployment": "26",
+        "target": "arm64-macos"
+      }
+    ]
+  },
+  "tapi_tbd_version": 5
+}
+
+;--- inputs.json.in
+{
+  "headers": [ 
+  {
+    "path" : "DSTROOT/usr/include/public.h",
+    "type" : "public"
+  },
+  {
+    "path" : "DSTROOT/project.h",
+    "type" : "project"
+  }
+  ],
+  "version": "3"
+}


        


More information about the cfe-commits mailing list