mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 14:56:07 +00:00

Reenables b31414bf4f9898f7817a9fcf8a91f62ec26f3eaf. Also adds a new warning for missing `--symbol-graph-dir` arg when `--emit-extension-symbol-graphs` is provided. This also reverts the commit that removed.
296 lines
6.5 KiB
C
296 lines
6.5 KiB
C
// RUN: rm -rf %t
|
|
// RUN: split-file %s %t
|
|
// RUN: sed -e "s@INPUT_DIR@%{/t:regex_replacement}@g" \
|
|
// RUN: %t/c.reference.output.json.in >> %t/c.reference.output.json
|
|
// RUN: sed -e "s@INPUT_DIR@%{/t:regex_replacement}@g" \
|
|
// RUN: %t/objc.reference.output.json.in >> %t/objc.reference.output.json
|
|
// RUN: sed -e "s@INPUT_DIR@%{/t:regex_replacement}@g" \
|
|
// RUN: %t/objcpp.reference.output.json.in >> %t/objcpp.reference.output.json
|
|
|
|
// RUN: %clang_cc1 -extract-api --pretty-sgf -x c-header -triple arm64-apple-macosx \
|
|
// RUN: %t/c.h -o %t/c.output.json | FileCheck -allow-empty %s
|
|
// RUN: %clang_cc1 -extract-api --pretty-sgf -x objective-c-header -triple arm64-apple-macosx \
|
|
// RUN: %t/objc.h -o %t/objc.output.json | FileCheck -allow-empty %s
|
|
// RUN: %clang_cc1 -extract-api --pretty-sgf -x objective-c++-header -triple arm64-apple-macosx \
|
|
// RUN: %t/objcpp.h -o %t/objcpp.output.json | FileCheck -allow-empty %s
|
|
|
|
// Generator version is not consistent across test runs, normalize it.
|
|
// RUN: sed -e "s@\"generator\": \".*\"@\"generator\": \"?\"@g" \
|
|
// RUN: %t/c.output.json >> %t/c.output-normalized.json
|
|
// RUN: sed -e "s@\"generator\": \".*\"@\"generator\": \"?\"@g" \
|
|
// RUN: %t/objc.output.json >> %t/objc.output-normalized.json
|
|
// RUN: sed -e "s@\"generator\": \".*\"@\"generator\": \"?\"@g" \
|
|
// RUN: %t/objcpp.output.json >> %t/objcpp.output-normalized.json
|
|
|
|
// RUN: diff %t/c.reference.output.json %t/c.output-normalized.json
|
|
// RUN: diff %t/objc.reference.output.json %t/objc.output-normalized.json
|
|
// RUN: diff %t/objcpp.reference.output.json %t/objcpp.output-normalized.json
|
|
|
|
// CHECK-NOT: error:
|
|
// CHECK-NOT: warning:
|
|
|
|
//--- c.h
|
|
char c;
|
|
///expected-no-diagnostics
|
|
|
|
//--- objc.h
|
|
char objc;
|
|
///expected-no-diagnostics
|
|
|
|
//--- objcpp.h
|
|
char objcpp;
|
|
///expected-no-diagnostics
|
|
|
|
//--- c.reference.output.json.in
|
|
{
|
|
"metadata": {
|
|
"formatVersion": {
|
|
"major": 0,
|
|
"minor": 5,
|
|
"patch": 3
|
|
},
|
|
"generator": "?"
|
|
},
|
|
"module": {
|
|
"name": "",
|
|
"platform": {
|
|
"architecture": "arm64",
|
|
"operatingSystem": {
|
|
"minimumVersion": {
|
|
"major": 11,
|
|
"minor": 0,
|
|
"patch": 0
|
|
},
|
|
"name": "macosx"
|
|
},
|
|
"vendor": "apple"
|
|
}
|
|
},
|
|
"relationships": [],
|
|
"symbols": [
|
|
{
|
|
"accessLevel": "public",
|
|
"declarationFragments": [
|
|
{
|
|
"kind": "typeIdentifier",
|
|
"preciseIdentifier": "c:C",
|
|
"spelling": "char"
|
|
},
|
|
{
|
|
"kind": "text",
|
|
"spelling": " "
|
|
},
|
|
{
|
|
"kind": "identifier",
|
|
"spelling": "c"
|
|
},
|
|
{
|
|
"kind": "text",
|
|
"spelling": ";"
|
|
}
|
|
],
|
|
"identifier": {
|
|
"interfaceLanguage": "c",
|
|
"precise": "c:@c"
|
|
},
|
|
"kind": {
|
|
"displayName": "Global Variable",
|
|
"identifier": "c.var"
|
|
},
|
|
"location": {
|
|
"position": {
|
|
"character": 5,
|
|
"line": 0
|
|
},
|
|
"uri": "file://INPUT_DIR/c.h"
|
|
},
|
|
"names": {
|
|
"navigator": [
|
|
{
|
|
"kind": "identifier",
|
|
"spelling": "c"
|
|
}
|
|
],
|
|
"subHeading": [
|
|
{
|
|
"kind": "identifier",
|
|
"spelling": "c"
|
|
}
|
|
],
|
|
"title": "c"
|
|
},
|
|
"pathComponents": [
|
|
"c"
|
|
]
|
|
}
|
|
]
|
|
}
|
|
//--- objc.reference.output.json.in
|
|
{
|
|
"metadata": {
|
|
"formatVersion": {
|
|
"major": 0,
|
|
"minor": 5,
|
|
"patch": 3
|
|
},
|
|
"generator": "?"
|
|
},
|
|
"module": {
|
|
"name": "",
|
|
"platform": {
|
|
"architecture": "arm64",
|
|
"operatingSystem": {
|
|
"minimumVersion": {
|
|
"major": 11,
|
|
"minor": 0,
|
|
"patch": 0
|
|
},
|
|
"name": "macosx"
|
|
},
|
|
"vendor": "apple"
|
|
}
|
|
},
|
|
"relationships": [],
|
|
"symbols": [
|
|
{
|
|
"accessLevel": "public",
|
|
"declarationFragments": [
|
|
{
|
|
"kind": "typeIdentifier",
|
|
"preciseIdentifier": "c:C",
|
|
"spelling": "char"
|
|
},
|
|
{
|
|
"kind": "text",
|
|
"spelling": " "
|
|
},
|
|
{
|
|
"kind": "identifier",
|
|
"spelling": "objc"
|
|
},
|
|
{
|
|
"kind": "text",
|
|
"spelling": ";"
|
|
}
|
|
],
|
|
"identifier": {
|
|
"interfaceLanguage": "objective-c",
|
|
"precise": "c:@objc"
|
|
},
|
|
"kind": {
|
|
"displayName": "Global Variable",
|
|
"identifier": "objective-c.var"
|
|
},
|
|
"location": {
|
|
"position": {
|
|
"character": 5,
|
|
"line": 0
|
|
},
|
|
"uri": "file://INPUT_DIR/objc.h"
|
|
},
|
|
"names": {
|
|
"navigator": [
|
|
{
|
|
"kind": "identifier",
|
|
"spelling": "objc"
|
|
}
|
|
],
|
|
"subHeading": [
|
|
{
|
|
"kind": "identifier",
|
|
"spelling": "objc"
|
|
}
|
|
],
|
|
"title": "objc"
|
|
},
|
|
"pathComponents": [
|
|
"objc"
|
|
]
|
|
}
|
|
]
|
|
}
|
|
//--- objcpp.reference.output.json.in
|
|
{
|
|
"metadata": {
|
|
"formatVersion": {
|
|
"major": 0,
|
|
"minor": 5,
|
|
"patch": 3
|
|
},
|
|
"generator": "?"
|
|
},
|
|
"module": {
|
|
"name": "",
|
|
"platform": {
|
|
"architecture": "arm64",
|
|
"operatingSystem": {
|
|
"minimumVersion": {
|
|
"major": 11,
|
|
"minor": 0,
|
|
"patch": 0
|
|
},
|
|
"name": "macosx"
|
|
},
|
|
"vendor": "apple"
|
|
}
|
|
},
|
|
"relationships": [],
|
|
"symbols": [
|
|
{
|
|
"accessLevel": "public",
|
|
"declarationFragments": [
|
|
{
|
|
"kind": "typeIdentifier",
|
|
"preciseIdentifier": "c:C",
|
|
"spelling": "char"
|
|
},
|
|
{
|
|
"kind": "text",
|
|
"spelling": " "
|
|
},
|
|
{
|
|
"kind": "identifier",
|
|
"spelling": "objcpp"
|
|
},
|
|
{
|
|
"kind": "text",
|
|
"spelling": ";"
|
|
}
|
|
],
|
|
"identifier": {
|
|
"interfaceLanguage": "objective-c++",
|
|
"precise": "c:@objcpp"
|
|
},
|
|
"kind": {
|
|
"displayName": "Global Variable",
|
|
"identifier": "objective-c++.var"
|
|
},
|
|
"location": {
|
|
"position": {
|
|
"character": 5,
|
|
"line": 0
|
|
},
|
|
"uri": "file://INPUT_DIR/objcpp.h"
|
|
},
|
|
"names": {
|
|
"navigator": [
|
|
{
|
|
"kind": "identifier",
|
|
"spelling": "objcpp"
|
|
}
|
|
],
|
|
"subHeading": [
|
|
{
|
|
"kind": "identifier",
|
|
"spelling": "objcpp"
|
|
}
|
|
],
|
|
"title": "objcpp"
|
|
},
|
|
"pathComponents": [
|
|
"objcpp"
|
|
]
|
|
}
|
|
]
|
|
}
|