62 lines · plain
1; RUN: rm -rf %t2; RUN: split-file %s %t3; RUN: mkdir -p %t/DstRoot/4; RUN: cp -r %S/Inputs/LibFoo/* %t/DstRoot/5 6; RUN: clang-installapi \7; RUN: -target arm64-apple-macos12 -install_name @rpath/libfoo.dylib \8; RUN: -current_version 1 -compatibility_version 1 \9; RUN: -I%t/DstRoot/usr/include -dynamiclib \10; RUN: -exclude-public-header %t/DstRoot/usr/include/public.h \11; RUN: %t/DstRoot -o %t/output.tbd 2>&1 | FileCheck %s --allow-empty \12; RUN: --implicit-check-not=error --implicit-check-not=warning 13; RUN: llvm-readtapi --compare %t/output.tbd %t/expected.tbd 14 15 16;--- DstRoot/usr/include/extra/extra.h17int extra(void);18 19;--- DstRoot/usr/include/extra/additional/additional.h20int additional(void);21 22;--- DstRoot/usr/include/more/more.h23int more(void);24 25;--- DstRoot/usr/include/another/another.h26int another(void);27 28;--- expected.tbd29{30 "main_library": {31 "exported_symbols": [32 {33 "text": {34 "global": [35 "_foo", "_additional", "_more",36 "_another", "_extra"37 ]38 }39 }40 ],41 "flags": [42 {43 "attributes": [44 "not_app_extension_safe"45 ]46 }47 ],48 "install_names": [49 {50 "name": "@rpath/libfoo.dylib"51 }52 ],53 "target_info": [54 {55 "min_deployment": "12",56 "target": "arm64-macos"57 }58 ]59 },60 "tapi_tbd_version": 561}62