Update tests for llvm 4

This commit is contained in:
Jacob Dufault 2017-12-18 20:39:45 -08:00
parent 8897bcc54d
commit 3d4ebcd7ee
4 changed files with 63 additions and 97 deletions

View File

@ -227,7 +227,23 @@ bool IsSymLink(const std::string& path) {
} }
std::vector<std::string> GetPlatformClangArguments() { std::vector<std::string> GetPlatformClangArguments() {
return {"-fms-compatibility", "-fdelayed-template-parsing"}; //
// Found by executing
//
// $ clang++ -E -x c++ - -v
//
return {
"-isystem","C:/Program Files/Microsoft Visual Studio 10.0/VC/include",
"-isystem","C:/Program Files/Microsoft Visual Studio 9.0/VC/include",
"-isystem","C:/Program Files/Microsoft Visual Studio 9.0/VC/PlatformSDK/Include",
"-isystem","C:/Program Files/Microsoft Visual Studio 8/VC/include",
"-isystem","C:/Program Files/Microsoft Visual Studio 8/VC/PlatformSDK/Include",
"-isystem","C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/VC/Tools/MSVC/14.10.25017/include",
"-isystem","C:/Program Files (x86)/Windows Kits/10/Include/10.0.15063.0/ucrt",
"-isystem","C:/Program Files/LLVM/lib/clang/4.0.0/include",
"-fms-extensions", "-fms-compatibility", "-fms-compatibility-version=18", "-fdelayed-template-parsing"
};
} }
void FreeUnusedMemory() {} void FreeUnusedMemory() {}

View File

@ -22,26 +22,12 @@ OUTPUT:
"parents": [], "parents": [],
"derived": [], "derived": [],
"types": [], "types": [],
"funcs": [0], "funcs": [],
"vars": [], "vars": [],
"instances": [], "instances": [],
"uses": ["4:8-4:11", "5:12-5:15"] "uses": ["4:8-4:11"]
}],
"funcs": [{
"id": 0,
"is_operator": false,
"usr": "c:@S@Foo@F@Foo#&&$@S@Foo#",
"short_name": "Foo",
"detailed_name": "void Foo::Foo(Foo &&)",
"declarations": [],
"definition_spelling": "5:12-5:15",
"definition_extent": "5:12-5:16",
"declaring_type": 0,
"derived": [],
"locals": [],
"callers": [],
"callees": []
}], }],
"funcs": [],
"vars": [{ "vars": [{
"id": 0, "id": 0,
"usr": "c:@x", "usr": "c:@x",

View File

@ -1,15 +1,11 @@
#import <Foundation/Foundation.h> @interface AClass
+ (void)test;
@interface AClass: NSObject
- (void)anInstanceMethod; - (void)anInstanceMethod;
@property (nonatomic) int aProp; @property (nonatomic) int aProp;
@property (readonly) int readOnlyProp;
@end @end
@implementation AClass @implementation AClass
- (void)anInstanceMethod { - (void)anInstanceMethod {}
NSLog(@"instance method");
}
@end @end
int main(void) int main(void)
@ -22,53 +18,66 @@ int main(void)
/* /*
OUTPUT: OUTPUT:
{ {
"includes": [{ "includes": [],
"line": 1,
"resolved_path": "&Foundation.h"
}],
"skipped_by_preprocessor": [], "skipped_by_preprocessor": [],
"types": [{ "types": [{
"id": 0, "id": 0,
"usr": "c:objc(cs)AClass", "usr": "c:objc(cs)AClass",
"short_name": "AClass", "short_name": "AClass",
"detailed_name": "AClass", "detailed_name": "AClass",
"definition_spelling": "9:17-9:23", "definition_spelling": "7:17-7:23",
"definition_extent": "9:1-13:2", "definition_extent": "7:1-9:2",
"parents": [], "parents": [],
"derived": [], "derived": [],
"types": [], "types": [],
"funcs": [], "funcs": [],
"vars": [], "vars": [],
"instances": [], "instances": [],
"uses": ["3:12-3:18", "9:17-9:23", "17:3-17:9", "17:23-17:29"] "uses": ["1:12-1:18", "7:17-7:23", "13:3-13:9", "13:23-13:29"]
}], }],
"funcs": [{ "funcs": [{
"id": 0, "id": 0,
"is_operator": false, "is_operator": false,
"usr": "c:objc(cs)AClass(cm)test",
"short_name": "test",
"detailed_name": " AClass::test",
"declarations": [{
"spelling": "2:11-2:15",
"extent": "2:3-2:16",
"content": "+ (void)test;",
"param_spellings": []
}],
"derived": [],
"locals": [],
"callers": [],
"callees": []
}, {
"id": 1,
"is_operator": false,
"usr": "c:objc(cs)AClass(im)anInstanceMethod", "usr": "c:objc(cs)AClass(im)anInstanceMethod",
"short_name": "anInstanceMethod", "short_name": "anInstanceMethod",
"detailed_name": " AClass::anInstanceMethod", "detailed_name": " AClass::anInstanceMethod",
"declarations": [{ "declarations": [{
"spelling": "4:11-4:27", "spelling": "3:11-3:27",
"extent": "4:3-4:28", "extent": "3:3-3:28",
"content": "- (void)anInstanceMethod;", "content": "- (void)anInstanceMethod;",
"param_spellings": [] "param_spellings": []
}], }],
"definition_spelling": "10:9-10:25", "definition_spelling": "8:9-8:25",
"definition_extent": "10:1-12:2", "definition_extent": "8:1-8:28",
"derived": [], "derived": [],
"locals": [], "locals": [],
"callers": ["4@18:13-18:29"], "callers": ["4@14:13-14:29"],
"callees": [] "callees": []
}, { }, {
"id": 1, "id": 2,
"is_operator": false, "is_operator": false,
"usr": "c:objc(cs)AClass(im)aProp", "usr": "c:objc(cs)AClass(im)aProp",
"short_name": "aProp", "short_name": "aProp",
"detailed_name": " AClass::aProp", "detailed_name": " AClass::aProp",
"declarations": [{ "declarations": [{
"spelling": "0:0-0:0", "spelling": "0:0-0:0",
"extent": "5:29-5:34", "extent": "4:29-4:34",
"content": "aProp", "content": "aProp",
"param_spellings": [] "param_spellings": []
}], }],
@ -77,37 +86,21 @@ OUTPUT:
"callers": [], "callers": [],
"callees": [] "callees": []
}, { }, {
"id": 2, "id": 3,
"is_operator": false, "is_operator": false,
"usr": "c:objc(cs)AClass(im)setAProp:", "usr": "c:objc(cs)AClass(im)setAProp:",
"short_name": "setAProp:", "short_name": "setAProp:",
"detailed_name": " AClass::setAProp:", "detailed_name": " AClass::setAProp:",
"declarations": [{ "declarations": [{
"spelling": "0:0-0:0", "spelling": "0:0-0:0",
"extent": "5:29-5:34", "extent": "4:29-4:34",
"content": "aProp", "content": "aProp",
"param_spellings": ["5:29-5:34"] "param_spellings": ["4:29-4:34"]
}], }],
"derived": [], "derived": [],
"locals": [], "locals": [],
"callers": ["4@0:0-0:0"], "callers": ["4@0:0-0:0"],
"callees": [] "callees": []
}, {
"id": 3,
"is_operator": false,
"usr": "c:objc(cs)AClass(im)readOnlyProp",
"short_name": "readOnlyProp",
"detailed_name": " AClass::readOnlyProp",
"declarations": [{
"spelling": "0:0-0:0",
"extent": "6:28-6:40",
"content": "readOnlyProp",
"param_spellings": []
}],
"derived": [],
"locals": [],
"callers": [],
"callees": []
}, { }, {
"id": 4, "id": 4,
"is_operator": false, "is_operator": false,
@ -115,61 +108,32 @@ OUTPUT:
"short_name": "main", "short_name": "main",
"detailed_name": "int main()", "detailed_name": "int main()",
"declarations": [], "declarations": [],
"definition_spelling": "15:5-15:9", "definition_spelling": "11:5-11:9",
"definition_extent": "15:1-20:2", "definition_extent": "11:1-16:2",
"derived": [], "derived": [],
"locals": [], "locals": [],
"callers": [], "callers": [],
"callees": ["0@18:13-18:29", "2@0:0-0:0"] "callees": ["1@14:13-14:29", "3@0:0-0:0"]
}], }],
"vars": [{ "vars": [{
"id": 0, "id": 0,
"usr": "c:objc(cs)AClass(py)aProp", "usr": "c:objc(cs)AClass(py)aProp",
"short_name": "aProp", "short_name": "aProp",
"detailed_name": "int AClass::aProp", "detailed_name": "int AClass::aProp",
"declaration": "5:29-5:34", "declaration": "4:29-4:34",
"is_local": true, "is_local": true,
"is_macro": false, "is_macro": false,
"uses": ["5:29-5:34", "19:12-19:17"] "uses": ["4:29-4:34", "15:12-15:17"]
}, { }, {
"id": 1, "id": 1,
"usr": "c:objc(cs)AClass(py)readOnlyProp", "usr": "c:class.m@191@F@main#@instance",
"short_name": "readOnlyProp",
"detailed_name": "int AClass::readOnlyProp",
"declaration": "6:28-6:40",
"is_local": true,
"is_macro": false,
"uses": ["6:28-6:40"]
}, {
"id": 2,
"usr": "c:objc(cs)AClass@_aProp",
"short_name": "_aProp",
"detailed_name": "int AClass::_aProp",
"definition_spelling": "5:29-5:34",
"definition_extent": "5:29-5:34",
"is_local": true,
"is_macro": false,
"uses": ["5:29-5:34"]
}, {
"id": 3,
"usr": "c:objc(cs)AClass@_readOnlyProp",
"short_name": "_readOnlyProp",
"detailed_name": "int AClass::_readOnlyProp",
"definition_spelling": "6:28-6:40",
"definition_extent": "6:28-6:40",
"is_local": true,
"is_macro": false,
"uses": ["6:28-6:40"]
}, {
"id": 4,
"usr": "c:class.m@297@F@main#@instance",
"short_name": "instance", "short_name": "instance",
"detailed_name": "AClass * instance", "detailed_name": "AClass * instance",
"definition_spelling": "17:11-17:19", "definition_spelling": "13:11-13:19",
"definition_extent": "17:3-17:35", "definition_extent": "13:3-13:35",
"is_local": true, "is_local": true,
"is_macro": false, "is_macro": false,
"uses": ["17:11-17:19", "18:4-18:12", "19:3-19:11"] "uses": ["13:11-13:19", "14:4-14:12", "15:3-15:11"]
}] }]
} }
*/ */

View File

@ -47,7 +47,7 @@ OUTPUT:
"funcs": [], "funcs": [],
"vars": [], "vars": [],
"instances": [0, 1], "instances": [0, 1],
"uses": ["7:8-7:14", "8:8-8:14", "9:20-9:26"] "uses": ["7:8-7:14", "8:8-8:14", "9:20-9:26", "12:78-12:84"]
}, { }, {
"id": 2, "id": 2,
"usr": "c:@N@std@ST>2#T#T@vector", "usr": "c:@N@std@ST>2#T#T@vector",