[Support] Check zstd decompress result before msan unpoison (#117276)
[llvm-project.git] / clang / test / InstallAPI / functions.test
bloba50a6a53e1001cea0d32f33af1e99cc802db2b91
1 // RUN: rm -rf %t
2 // RUN: split-file %s %t
3 // RUN: sed -e "s|DSTROOT|%/t|g" %t/inputs.json.in > %t/inputs.json
5 // RUN: clang-installapi -target arm64-apple-macos13.1 \
6 // RUN: -I%t/usr/include -I%t/usr/local/include -dynamiclib \
7 // RUN: -install_name @rpath/lib/libfunctions.dylib --filetype=tbd-v4 \
8 // RUN: %t/inputs.json -o %t/outputs.tbd 2>&1 | FileCheck %s --allow-empty
9 // RUN: llvm-readtapi -compare %t/outputs.tbd %t/expected.tbd 2>&1 | FileCheck %s --allow-empty
11 // CHECK-NOT: error: 
12 // CHECK-NOT: warning: 
14 //--- usr/include/functions.h
15 inline int inlined_func(void) { return 1;}
16 int public(int a);
18 //--- usr/local/include/private_functions.h
19 __attribute__((visibility("hidden")))
20 void hidden(void);
22 //--- inputs.json.in
24   "headers": [ {
25     "path" : "DSTROOT/usr/include/functions.h",
26     "type" : "public"
27   }, 
28   {
29     "path" : "DSTROOT/usr/local/include/private_functions.h",
30     "type" : "private"
31   }
32   ],
33   "version": "3"
36 //--- expected.tbd
38   "main_library": {
39     "compatibility_versions": [
40       {
41         "version": "0"
42       }
43     ],
44     "current_versions": [
45       {
46         "version": "0"
47       }
48     ],
49     "exported_symbols": [
50       {
51         "text": {
52           "global": [
53             "_public"
54           ]
55         }
56       }
57     ],
58     "flags": [
59       {
60         "attributes": [
61           "not_app_extension_safe"
62         ]
63       }
64     ],
65     "install_names": [
66       {
67         "name": "@rpath/lib/libfunctions.dylib"
68       }
69     ],
70     "target_info": [
71       {
72         "min_deployment": "13.1",
73         "target": "arm64-macos"
74       }
75     ]
76   },
77   "tapi_tbd_version": 5