From 0e574bb1ccb15f020b42bd25f5404d11d97f5059 Mon Sep 17 00:00:00 2001 From: Philippe Bidinger Date: Thu, 25 Jul 2024 07:48:05 -0700 Subject: [PATCH] move xlang tests to new test target Summary: The clang codemarkup tests (//glean/lang/codemarkup/tests/clang:tests) are very slow to run (~10mn). To speed tests, this diff extracts the cpp-xlang directory to its own target, and reduces the number of queries (keep only the queries related to idl). Another motivation for this split is to eventually generate the c++ code directly from the test thrift file. It'll be easier with a dedicated target Reviewed By: iamirzhan Differential Revision: D60233939 fbshipit-source-id: 1530bd1a99a2a25b166ae145d1d7fc435b600de5 --- .../cpp-xlang/CxxPpResolveTraceLocations.out | 151 ----------------- .../cpp-xlang/CxxPpResolveTraceLocations.perf | 6 - .../tests/clang/glass/cpp-xlang/EntityIdl.out | 113 ------------- .../clang/glass/cpp-xlang/EntityIdl.perf | 1 - .../glass/cpp-xlang/cxxEntityComments.out | 67 -------- .../glass/cpp-xlang/cxxEntityComments.perf | 7 - .../cxxFileEntityXMapFixedXRefLocations.out | 1 - .../glass/cpp-xlang/cxx_entity_location.out | 143 ---------------- .../glass/cpp-xlang/cxx_entity_location.perf | 6 - .../cpp-xlang/cxx_entity_to_annotations.out | 65 -------- .../cpp-xlang/cxx_entity_to_annotations.perf | 6 - .../clang/glass/cpp-xlang/cxx_visibility.out | 1 - .../cxxresolvedeclarationtoentity.out | 58 ------- .../glass/cpp-xlang/entityreferences.out | 57 ------- .../glass/cpp-xlang/entityreferences.perf | 1 - .../clang/glass/cpp-xlang/fileentities.out | 154 ------------------ .../tests/clang/glass/cpp-xlang/fileinfo.out | 63 ------- .../tests/clang/glass/cpp-xlang/fileinfo.perf | 8 - .../clang/glass/cpp-xlang/searchbyname_pp.out | 1 - .../glass/cpp-xlang/searchbyname_pp_case.out | 1 - .../symbolid.cxx.LookupDeclaration.out | 1 - .../symbolid.cxx.LookupDefinition.out | 1 - .../symbolid.cxx.LookupDefinition.perf | 1 - .../symbolid.cxx.LookupEnumerator.out | 1 - .../symbolid.cxx.LookupEnumerator.perf | 1 - ...symbolid.cxx.LookupFunctionDeclaration.out | 87 ---------- ...ymbolid.cxx.LookupFunctionDeclaration.perf | 5 - .../symbolid.cxx.LookupFunctionDefinition.out | 38 ----- ...symbolid.cxx.LookupFunctionDefinition.perf | 6 - ...cxx.LookupFunctionSignatureDeclaration.out | 96 ----------- ...xx.LookupFunctionSignatureDeclaration.perf | 5 - ....cxx.LookupFunctionSignatureDefinition.out | 41 ----- ...cxx.LookupFunctionSignatureDefinition.perf | 6 - ...ymbolid.cxx.LookupNamespaceDeclaration.out | 1 - ...mbolid.cxx.LookupNamespaceDeclaration.perf | 1 - ...symbolid.cxx.LookupNamespaceDefinition.out | 1 - ...ymbolid.cxx.LookupNamespaceDefinition.perf | 1 - .../entityreferences.out} | 0 .../entityreferences.perf} | 0 .../entityreferences.query | 0 .../cpp-xlang => xlang/thrift}/test.cpp | 0 .../{glass/cpp-xlang => xlang/thrift}/test.h | 0 .../cpp-xlang => xlang/thrift}/test.thrift | 0 43 files changed, 1203 deletions(-) delete mode 100644 glean/lang/codemarkup/tests/clang/glass/cpp-xlang/CxxPpResolveTraceLocations.out delete mode 100644 glean/lang/codemarkup/tests/clang/glass/cpp-xlang/CxxPpResolveTraceLocations.perf delete mode 100644 glean/lang/codemarkup/tests/clang/glass/cpp-xlang/EntityIdl.out delete mode 100644 glean/lang/codemarkup/tests/clang/glass/cpp-xlang/EntityIdl.perf delete mode 100644 glean/lang/codemarkup/tests/clang/glass/cpp-xlang/cxxEntityComments.out delete mode 100644 glean/lang/codemarkup/tests/clang/glass/cpp-xlang/cxxEntityComments.perf delete mode 100644 glean/lang/codemarkup/tests/clang/glass/cpp-xlang/cxxFileEntityXMapFixedXRefLocations.out delete mode 100644 glean/lang/codemarkup/tests/clang/glass/cpp-xlang/cxx_entity_location.out delete mode 100644 glean/lang/codemarkup/tests/clang/glass/cpp-xlang/cxx_entity_location.perf delete mode 100644 glean/lang/codemarkup/tests/clang/glass/cpp-xlang/cxx_entity_to_annotations.out delete mode 100644 glean/lang/codemarkup/tests/clang/glass/cpp-xlang/cxx_entity_to_annotations.perf delete mode 100644 glean/lang/codemarkup/tests/clang/glass/cpp-xlang/cxx_visibility.out delete mode 100644 glean/lang/codemarkup/tests/clang/glass/cpp-xlang/cxxresolvedeclarationtoentity.out delete mode 100644 glean/lang/codemarkup/tests/clang/glass/cpp-xlang/entityreferences.out delete mode 100644 glean/lang/codemarkup/tests/clang/glass/cpp-xlang/entityreferences.perf delete mode 100644 glean/lang/codemarkup/tests/clang/glass/cpp-xlang/fileentities.out delete mode 100644 glean/lang/codemarkup/tests/clang/glass/cpp-xlang/fileinfo.out delete mode 100644 glean/lang/codemarkup/tests/clang/glass/cpp-xlang/fileinfo.perf delete mode 100644 glean/lang/codemarkup/tests/clang/glass/cpp-xlang/searchbyname_pp.out delete mode 100644 glean/lang/codemarkup/tests/clang/glass/cpp-xlang/searchbyname_pp_case.out delete mode 100644 glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupDeclaration.out delete mode 100644 glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupDefinition.out delete mode 100644 glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupDefinition.perf delete mode 100644 glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupEnumerator.out delete mode 100644 glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupEnumerator.perf delete mode 100644 glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupFunctionDeclaration.out delete mode 100644 glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupFunctionDeclaration.perf delete mode 100644 glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupFunctionDefinition.out delete mode 100644 glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupFunctionDefinition.perf delete mode 100644 glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupFunctionSignatureDeclaration.out delete mode 100644 glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupFunctionSignatureDeclaration.perf delete mode 100644 glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupFunctionSignatureDefinition.out delete mode 100644 glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupFunctionSignatureDefinition.perf delete mode 100644 glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupNamespaceDeclaration.out delete mode 100644 glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupNamespaceDeclaration.perf delete mode 100644 glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupNamespaceDefinition.out delete mode 100644 glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupNamespaceDefinition.perf rename glean/lang/codemarkup/tests/clang/{glass/cpp-xlang/SearchByName.out => xlang/entityreferences.out} (100%) rename glean/lang/codemarkup/tests/clang/{glass/cpp-xlang/symbolid.cxx.LookupDeclaration.perf => xlang/entityreferences.perf} (100%) rename glean/lang/codemarkup/tests/clang/{glass/cpp-xlang => xlang}/entityreferences.query (100%) rename glean/lang/codemarkup/tests/clang/{glass/cpp-xlang => xlang/thrift}/test.cpp (100%) rename glean/lang/codemarkup/tests/clang/{glass/cpp-xlang => xlang/thrift}/test.h (100%) rename glean/lang/codemarkup/tests/clang/{glass/cpp-xlang => xlang/thrift}/test.thrift (100%) diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/CxxPpResolveTraceLocations.out b/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/CxxPpResolveTraceLocations.out deleted file mode 100644 index 3d8edc26f..000000000 --- a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/CxxPpResolveTraceLocations.out +++ /dev/null @@ -1,151 +0,0 @@ -[ - "@generated", - { - "key": { - "tuplefield0": { - "name": "thrift1", - "file": { "key": "test.cpp" }, - "location": { - "range": { - "file": { "key": "test.cpp" }, - "lineBegin": 12, - "columnBegin": 1, - "lineEnd": 12, - "columnEnd": 14 - } - }, - "destination": { - "file": { "key": "test.cpp" }, - "span": { "start": 331, "length": 7 } - } - }, - "tuplefield1": { - "cxx": { - "decl": { - "function_": { - "key": { - "name": { - "key": { - "name": { "key": { "name": { "key": "thrift1" } } }, - "scope": { "global_": { } } - } - }, - "signature": { - "key": { "returns": { "key": "void" }, "parameters": [ ] } - }, - "source": { - "file": { "key": "test.cpp" }, - "lineBegin": 12, - "columnBegin": 1, - "lineEnd": 12, - "columnEnd": 14 - } - } - } - } - } - } - } - }, - { - "key": { - "tuplefield0": { - "name": "thrift2", - "file": { "key": "test.h" }, - "location": { - "range": { - "file": { "key": "test.h" }, - "lineBegin": 11, - "columnBegin": 1, - "lineEnd": 11, - "columnEnd": 14 - } - }, - "destination": { - "file": { "key": "test.h" }, - "span": { "start": 313, "length": 7 } - } - }, - "tuplefield1": { - "cxx": { - "decl": { - "function_": { - "key": { - "name": { - "key": { - "name": { "key": { "name": { "key": "thrift2" } } }, - "scope": { "global_": { } } - } - }, - "signature": { - "key": { "returns": { "key": "void" }, "parameters": [ ] } - }, - "source": { - "file": { "key": "test.h" }, - "lineBegin": 11, - "columnBegin": 1, - "lineEnd": 11, - "columnEnd": 14 - } - } - } - } - } - } - } - }, - { - "key": { - "tuplefield0": { - "name": "thriftCaller", - "file": { "key": "test.cpp" }, - "location": { - "range": { - "file": { "key": "test.cpp" }, - "lineBegin": 15, - "columnBegin": 1, - "lineEnd": 18, - "columnEnd": 1 - } - }, - "destination": { - "file": { "key": "test.cpp" }, - "span": { "start": 375, "length": 12 } - } - }, - "tuplefield1": { - "cxx": { - "defn": { - "function_": { - "key": { - "declaration": { - "key": { - "name": { - "key": { - "name": { - "key": { "name": { "key": "thriftCaller" } } - }, - "scope": { "global_": { } } - } - }, - "signature": { - "key": { "returns": { "key": "void" }, "parameters": [ ] } - }, - "source": { - "file": { "key": "test.cpp" }, - "lineBegin": 15, - "columnBegin": 1, - "lineEnd": 18, - "columnEnd": 1 - } - } - }, - "isInline": false - } - } - } - } - } - } - } -] \ No newline at end of file diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/CxxPpResolveTraceLocations.perf b/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/CxxPpResolveTraceLocations.perf deleted file mode 100644 index 529cfa337..000000000 --- a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/CxxPpResolveTraceLocations.perf +++ /dev/null @@ -1,6 +0,0 @@ -{ - "@generated": null, - "cxx1.DeclarationNameSpan.5": 3, - "cxx1.FunctionDefinition.5": 1, - "cxx1.Trace.5": 2 -} \ No newline at end of file diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/EntityIdl.out b/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/EntityIdl.out deleted file mode 100644 index d64f46434..000000000 --- a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/EntityIdl.out +++ /dev/null @@ -1,113 +0,0 @@ -[ - "@generated", - { - "key": { - "entity": { - "cxx": { - "decl": { - "function_": { - "key": { - "name": { - "key": { - "name": { "key": { "name": { "key": "thrift1" } } }, - "scope": { "global_": { } } - } - }, - "signature": { - "key": { "returns": { "key": "void" }, "parameters": [ ] } - }, - "source": { - "file": { "key": "test.cpp" }, - "lineBegin": 12, - "columnBegin": 1, - "lineEnd": 12, - "columnEnd": 14 - } - } - } - } - } - }, - "idlEntity": { - "lang": 8, - "file": { "key": "test.thrift" }, - "entity": { - "fbthrift": { - "decl": { - "function_": { - "key": { - "service_": { - "key": { - "name": { - "key": { - "file": { "key": { "key": "test.thrift" } }, - "name": { "key": "TestService" } - } - } - } - }, - "name": { "key": "thrift1" } - } - } - } - } - } - } - } - }, - { - "key": { - "entity": { - "cxx": { - "decl": { - "function_": { - "key": { - "name": { - "key": { - "name": { "key": { "name": { "key": "thrift2" } } }, - "scope": { "global_": { } } - } - }, - "signature": { - "key": { "returns": { "key": "void" }, "parameters": [ ] } - }, - "source": { - "file": { "key": "test.h" }, - "lineBegin": 11, - "columnBegin": 1, - "lineEnd": 11, - "columnEnd": 14 - } - } - } - } - } - }, - "idlEntity": { - "lang": 8, - "file": { "key": "test.thrift" }, - "entity": { - "fbthrift": { - "decl": { - "function_": { - "key": { - "service_": { - "key": { - "name": { - "key": { - "file": { "key": { "key": "test.thrift" } }, - "name": { "key": "TestService" } - } - } - } - }, - "name": { "key": "thrift2" } - } - } - } - } - } - } - } - } -] \ No newline at end of file diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/EntityIdl.perf b/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/EntityIdl.perf deleted file mode 100644 index fb735dc72..000000000 --- a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/EntityIdl.perf +++ /dev/null @@ -1 +0,0 @@ -{ "@generated": null, "cxx1.CxxToThrift.5": 2 } \ No newline at end of file diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/cxxEntityComments.out b/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/cxxEntityComments.out deleted file mode 100644 index 2e2d2981b..000000000 --- a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/cxxEntityComments.out +++ /dev/null @@ -1,67 +0,0 @@ -[ - "@generated", - { - "key": { - "entity": { - "cxx": { - "decl": { - "function_": { - "key": { - "name": { - "key": { - "name": { "key": { "name": { "key": "thrift1" } } }, - "scope": { "global_": { } } - } - }, - "signature": { - "key": { "returns": { "key": "void" }, "parameters": [ ] } - }, - "source": { - "file": { "key": "test.cpp" }, - "lineBegin": 12, - "columnBegin": 1, - "lineEnd": 12, - "columnEnd": 14 - } - } - } - } - } - }, - "file": { "key": "test.cpp" }, - "span": { "start": 240, "length": 85 } - } - }, - { - "key": { - "entity": { - "cxx": { - "decl": { - "function_": { - "key": { - "name": { - "key": { - "name": { "key": { "name": { "key": "thrift2" } } }, - "scope": { "global_": { } } - } - }, - "signature": { - "key": { "returns": { "key": "void" }, "parameters": [ ] } - }, - "source": { - "file": { "key": "test.h" }, - "lineBegin": 11, - "columnBegin": 1, - "lineEnd": 11, - "columnEnd": 14 - } - } - } - } - } - }, - "file": { "key": "test.h" }, - "span": { "start": 222, "length": 85 } - } - } -] \ No newline at end of file diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/cxxEntityComments.perf b/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/cxxEntityComments.perf deleted file mode 100644 index dbbf286ab..000000000 --- a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/cxxEntityComments.perf +++ /dev/null @@ -1,7 +0,0 @@ -{ - "@generated": null, - "cxx1.DeclarationComment.5": 2, - "cxx1.DeclarationNameSpan.5": 3, - "cxx1.FunctionDefinition.5": 1, - "cxx1.Trace.5": 2 -} \ No newline at end of file diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/cxxFileEntityXMapFixedXRefLocations.out b/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/cxxFileEntityXMapFixedXRefLocations.out deleted file mode 100644 index c7ae735b9..000000000 --- a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/cxxFileEntityXMapFixedXRefLocations.out +++ /dev/null @@ -1 +0,0 @@ -[ "@generated" ] \ No newline at end of file diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/cxx_entity_location.out b/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/cxx_entity_location.out deleted file mode 100644 index 70258bc29..000000000 --- a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/cxx_entity_location.out +++ /dev/null @@ -1,143 +0,0 @@ -[ - "@generated", - { - "key": { - "entity": { - "decl": { - "function_": { - "key": { - "name": { - "key": { - "name": { "key": { "name": { "key": "thrift1" } } }, - "scope": { "global_": { } } - } - }, - "signature": { - "key": { "returns": { "key": "void" }, "parameters": [ ] } - }, - "source": { - "file": { "key": "test.cpp" }, - "lineBegin": 12, - "columnBegin": 1, - "lineEnd": 12, - "columnEnd": 14 - } - } - } - } - }, - "location": { - "name": "thrift1", - "file": { "key": "test.cpp" }, - "location": { - "range": { - "file": { "key": "test.cpp" }, - "lineBegin": 12, - "columnBegin": 1, - "lineEnd": 12, - "columnEnd": 14 - } - }, - "destination": { - "file": { "key": "test.cpp" }, - "span": { "start": 331, "length": 7 } - } - } - } - }, - { - "key": { - "entity": { - "decl": { - "function_": { - "key": { - "name": { - "key": { - "name": { "key": { "name": { "key": "thrift2" } } }, - "scope": { "global_": { } } - } - }, - "signature": { - "key": { "returns": { "key": "void" }, "parameters": [ ] } - }, - "source": { - "file": { "key": "test.h" }, - "lineBegin": 11, - "columnBegin": 1, - "lineEnd": 11, - "columnEnd": 14 - } - } - } - } - }, - "location": { - "name": "thrift2", - "file": { "key": "test.h" }, - "location": { - "range": { - "file": { "key": "test.h" }, - "lineBegin": 11, - "columnBegin": 1, - "lineEnd": 11, - "columnEnd": 14 - } - }, - "destination": { - "file": { "key": "test.h" }, - "span": { "start": 313, "length": 7 } - } - } - } - }, - { - "key": { - "entity": { - "defn": { - "function_": { - "key": { - "declaration": { - "key": { - "name": { - "key": { - "name": { "key": { "name": { "key": "thriftCaller" } } }, - "scope": { "global_": { } } - } - }, - "signature": { - "key": { "returns": { "key": "void" }, "parameters": [ ] } - }, - "source": { - "file": { "key": "test.cpp" }, - "lineBegin": 15, - "columnBegin": 1, - "lineEnd": 18, - "columnEnd": 1 - } - } - }, - "isInline": false - } - } - } - }, - "location": { - "name": "thriftCaller", - "file": { "key": "test.cpp" }, - "location": { - "range": { - "file": { "key": "test.cpp" }, - "lineBegin": 15, - "columnBegin": 1, - "lineEnd": 18, - "columnEnd": 1 - } - }, - "destination": { - "file": { "key": "test.cpp" }, - "span": { "start": 375, "length": 12 } - } - } - } - } -] \ No newline at end of file diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/cxx_entity_location.perf b/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/cxx_entity_location.perf deleted file mode 100644 index 15b028063..000000000 --- a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/cxx_entity_location.perf +++ /dev/null @@ -1,6 +0,0 @@ -{ - "@generated": null, - "cxx1.DeclarationNameSpan.5": 6, - "cxx1.FunctionDefinition.5": 1, - "cxx1.Trace.5": 2 -} \ No newline at end of file diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/cxx_entity_to_annotations.out b/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/cxx_entity_to_annotations.out deleted file mode 100644 index d18e5f37f..000000000 --- a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/cxx_entity_to_annotations.out +++ /dev/null @@ -1,65 +0,0 @@ -[ - "@generated", - { - "key": { - "entity": { - "cxx": { - "decl": { - "function_": { - "key": { - "name": { - "key": { - "name": { "key": { "name": { "key": "thrift1" } } }, - "scope": { "global_": { } } - } - }, - "signature": { - "key": { "returns": { "key": "void" }, "parameters": [ ] } - }, - "source": { - "file": { "key": "test.cpp" }, - "lineBegin": 12, - "columnBegin": 1, - "lineEnd": 12, - "columnEnd": 14 - } - } - } - } - } - }, - "annotations": { "cxx": { "attributes": [ ] } } - } - }, - { - "key": { - "entity": { - "cxx": { - "decl": { - "function_": { - "key": { - "name": { - "key": { - "name": { "key": { "name": { "key": "thrift2" } } }, - "scope": { "global_": { } } - } - }, - "signature": { - "key": { "returns": { "key": "void" }, "parameters": [ ] } - }, - "source": { - "file": { "key": "test.h" }, - "lineBegin": 11, - "columnBegin": 1, - "lineEnd": 11, - "columnEnd": 14 - } - } - } - } - } - }, - "annotations": { "cxx": { "attributes": [ ] } } - } - } -] \ No newline at end of file diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/cxx_entity_to_annotations.perf b/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/cxx_entity_to_annotations.perf deleted file mode 100644 index 529cfa337..000000000 --- a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/cxx_entity_to_annotations.perf +++ /dev/null @@ -1,6 +0,0 @@ -{ - "@generated": null, - "cxx1.DeclarationNameSpan.5": 3, - "cxx1.FunctionDefinition.5": 1, - "cxx1.Trace.5": 2 -} \ No newline at end of file diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/cxx_visibility.out b/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/cxx_visibility.out deleted file mode 100644 index c7ae735b9..000000000 --- a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/cxx_visibility.out +++ /dev/null @@ -1 +0,0 @@ -[ "@generated" ] \ No newline at end of file diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/cxxresolvedeclarationtoentity.out b/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/cxxresolvedeclarationtoentity.out deleted file mode 100644 index 92cc689f7..000000000 --- a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/cxxresolvedeclarationtoentity.out +++ /dev/null @@ -1,58 +0,0 @@ -[ - "@generated", - { - "key": { - "decl": { - "function_": { - "key": { - "name": { - "key": { - "name": { "key": { "name": { "key": "thriftCaller" } } }, - "scope": { "global_": { } } - } - }, - "signature": { - "key": { "returns": { "key": "void" }, "parameters": [ ] } - }, - "source": { - "file": { "key": "test.cpp" }, - "lineBegin": 15, - "columnBegin": 1, - "lineEnd": 18, - "columnEnd": 1 - } - } - } - }, - "entity": { - "defn": { - "function_": { - "key": { - "declaration": { - "key": { - "name": { - "key": { - "name": { "key": { "name": { "key": "thriftCaller" } } }, - "scope": { "global_": { } } - } - }, - "signature": { - "key": { "returns": { "key": "void" }, "parameters": [ ] } - }, - "source": { - "file": { "key": "test.cpp" }, - "lineBegin": 15, - "columnBegin": 1, - "lineEnd": 18, - "columnEnd": 1 - } - } - }, - "isInline": false - } - } - } - } - } - } -] \ No newline at end of file diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/entityreferences.out b/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/entityreferences.out deleted file mode 100644 index 65f9f8672..000000000 --- a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/entityreferences.out +++ /dev/null @@ -1,57 +0,0 @@ -[ - "@generated", - { - "key": { - "target": { - "fbthrift": { - "decl": { - "function_": { - "key": { - "service_": { - "key": { - "name": { - "key": { - "file": { "key": { "key": "test.thrift" } }, - "name": { "key": "TestService" } - } - } - } - }, - "name": { "key": "thrift1" } - } - } - } - } - }, - "file": { "key": "test.cpp" }, - "range": { "span": { "start": 394, "length": 7 } } - } - }, - { - "key": { - "target": { - "fbthrift": { - "decl": { - "function_": { - "key": { - "service_": { - "key": { - "name": { - "key": { - "file": { "key": { "key": "test.thrift" } }, - "name": { "key": "TestService" } - } - } - } - }, - "name": { "key": "thrift2" } - } - } - } - } - }, - "file": { "key": "test.cpp" }, - "range": { "span": { "start": 407, "length": 7 } } - } - } -] \ No newline at end of file diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/entityreferences.perf b/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/entityreferences.perf deleted file mode 100644 index 176aee037..000000000 --- a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/entityreferences.perf +++ /dev/null @@ -1 +0,0 @@ -{ "@generated": null, "cxx1.TargetUses.5": 2, "cxx1.ThriftToCxx.5": 2 } \ No newline at end of file diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/fileentities.out b/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/fileentities.out deleted file mode 100644 index 9a84212a8..000000000 --- a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/fileentities.out +++ /dev/null @@ -1,154 +0,0 @@ -[ - "@generated", - { - "key": { - "file": { "key": "test.cpp" }, - "location": { - "name": "thrift1", - "file": { "key": "test.cpp" }, - "location": { - "range": { - "file": { "key": "test.cpp" }, - "lineBegin": 12, - "columnBegin": 1, - "lineEnd": 12, - "columnEnd": 14 - } - }, - "destination": { - "file": { "key": "test.cpp" }, - "span": { "start": 331, "length": 7 } - } - }, - "entity": { - "cxx": { - "decl": { - "function_": { - "key": { - "name": { - "key": { - "name": { "key": { "name": { "key": "thrift1" } } }, - "scope": { "global_": { } } - } - }, - "signature": { - "key": { "returns": { "key": "void" }, "parameters": [ ] } - }, - "source": { - "file": { "key": "test.cpp" }, - "lineBegin": 12, - "columnBegin": 1, - "lineEnd": 12, - "columnEnd": 14 - } - } - } - } - } - } - } - }, - { - "key": { - "file": { "key": "test.cpp" }, - "location": { - "name": "thriftCaller", - "file": { "key": "test.cpp" }, - "location": { - "range": { - "file": { "key": "test.cpp" }, - "lineBegin": 15, - "columnBegin": 1, - "lineEnd": 18, - "columnEnd": 1 - } - }, - "destination": { - "file": { "key": "test.cpp" }, - "span": { "start": 375, "length": 12 } - } - }, - "entity": { - "cxx": { - "defn": { - "function_": { - "key": { - "declaration": { - "key": { - "name": { - "key": { - "name": { - "key": { "name": { "key": "thriftCaller" } } - }, - "scope": { "global_": { } } - } - }, - "signature": { - "key": { "returns": { "key": "void" }, "parameters": [ ] } - }, - "source": { - "file": { "key": "test.cpp" }, - "lineBegin": 15, - "columnBegin": 1, - "lineEnd": 18, - "columnEnd": 1 - } - } - }, - "isInline": false - } - } - } - } - } - } - }, - { - "key": { - "file": { "key": "test.h" }, - "location": { - "name": "thrift2", - "file": { "key": "test.h" }, - "location": { - "range": { - "file": { "key": "test.h" }, - "lineBegin": 11, - "columnBegin": 1, - "lineEnd": 11, - "columnEnd": 14 - } - }, - "destination": { - "file": { "key": "test.h" }, - "span": { "start": 313, "length": 7 } - } - }, - "entity": { - "cxx": { - "decl": { - "function_": { - "key": { - "name": { - "key": { - "name": { "key": { "name": { "key": "thrift2" } } }, - "scope": { "global_": { } } - } - }, - "signature": { - "key": { "returns": { "key": "void" }, "parameters": [ ] } - }, - "source": { - "file": { "key": "test.h" }, - "lineBegin": 11, - "columnBegin": 1, - "lineEnd": 11, - "columnEnd": 14 - } - } - } - } - } - } - } - } -] \ No newline at end of file diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/fileinfo.out b/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/fileinfo.out deleted file mode 100644 index ba4e16390..000000000 --- a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/fileinfo.out +++ /dev/null @@ -1,63 +0,0 @@ -[ - "@generated", - { - "key": { - "file": { "key": "test.cpp" }, - "info": { - "indexed": true, - "offsets": { - "key": { - "file": { "key": "test.cpp" }, - "lengths": [ - 3, - 54, - 24, - 3, - 73, - 59, - 4, - 1, - 18, - 1, - 86, - 16, - 1, - 27, - 22, - 13, - 13, - 2 - ], - "endsInNewline": true, - "hasUnicodeOrTabs": false - } - }, - "digest": { - "hash": "c19eedb242a1867935300bf022d4b8ab3d92ae00", - "size": 420 - } - } - } - }, - { - "key": { - "file": { "key": "test.h" }, - "info": { - "indexed": true, - "offsets": { - "key": { - "file": { "key": "test.h" }, - "lengths": [ 3, 54, 24, 3, 73, 59, 4, 1, 1, 86, 16 ], - "endsInNewline": true, - "hasUnicodeOrTabs": false - } - }, - "digest": { - "hash": "d31759d38b8e2df1b27e81d34d0d077bf3c73c8d", - "size": 324 - } - } - } - }, - { "key": { "file": { "key": "test.thrift" }, "info": { "indexed": false } } } -] \ No newline at end of file diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/fileinfo.perf b/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/fileinfo.perf deleted file mode 100644 index 7a90697ef..000000000 --- a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/fileinfo.perf +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@generated": null, - "cxx1.DeclarationNameSpan.5": 2, - "cxx1.Trace.5": 4, - "digest.FileDigest.1": 2, - "src.File.1": 3, - "src.FileLines.1": 2 -} \ No newline at end of file diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/searchbyname_pp.out b/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/searchbyname_pp.out deleted file mode 100644 index c7ae735b9..000000000 --- a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/searchbyname_pp.out +++ /dev/null @@ -1 +0,0 @@ -[ "@generated" ] \ No newline at end of file diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/searchbyname_pp_case.out b/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/searchbyname_pp_case.out deleted file mode 100644 index c7ae735b9..000000000 --- a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/searchbyname_pp_case.out +++ /dev/null @@ -1 +0,0 @@ -[ "@generated" ] \ No newline at end of file diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupDeclaration.out b/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupDeclaration.out deleted file mode 100644 index c7ae735b9..000000000 --- a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupDeclaration.out +++ /dev/null @@ -1 +0,0 @@ -[ "@generated" ] \ No newline at end of file diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupDefinition.out b/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupDefinition.out deleted file mode 100644 index c7ae735b9..000000000 --- a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupDefinition.out +++ /dev/null @@ -1 +0,0 @@ -[ "@generated" ] \ No newline at end of file diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupDefinition.perf b/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupDefinition.perf deleted file mode 100644 index 95c38ddc0..000000000 --- a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupDefinition.perf +++ /dev/null @@ -1 +0,0 @@ -{ "@generated": null } \ No newline at end of file diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupEnumerator.out b/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupEnumerator.out deleted file mode 100644 index c7ae735b9..000000000 --- a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupEnumerator.out +++ /dev/null @@ -1 +0,0 @@ -[ "@generated" ] \ No newline at end of file diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupEnumerator.perf b/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupEnumerator.perf deleted file mode 100644 index 95c38ddc0..000000000 --- a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupEnumerator.perf +++ /dev/null @@ -1 +0,0 @@ -{ "@generated": null } \ No newline at end of file diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupFunctionDeclaration.out b/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupFunctionDeclaration.out deleted file mode 100644 index 6ed63a873..000000000 --- a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupFunctionDeclaration.out +++ /dev/null @@ -1,87 +0,0 @@ -[ - "@generated", - { - "key": { - "name": { "key": { "name": { "key": "thrift1" } } }, - "scope": { "global_": { } }, - "decl": { - "function_": { - "key": { - "name": { - "key": { - "name": { "key": { "name": { "key": "thrift1" } } }, - "scope": { "global_": { } } - } - }, - "signature": { - "key": { "returns": { "key": "void" }, "parameters": [ ] } - }, - "source": { - "file": { "key": "test.cpp" }, - "lineBegin": 12, - "columnBegin": 1, - "lineEnd": 12, - "columnEnd": 14 - } - } - } - } - } - }, - { - "key": { - "name": { "key": { "name": { "key": "thrift2" } } }, - "scope": { "global_": { } }, - "decl": { - "function_": { - "key": { - "name": { - "key": { - "name": { "key": { "name": { "key": "thrift2" } } }, - "scope": { "global_": { } } - } - }, - "signature": { - "key": { "returns": { "key": "void" }, "parameters": [ ] } - }, - "source": { - "file": { "key": "test.h" }, - "lineBegin": 11, - "columnBegin": 1, - "lineEnd": 11, - "columnEnd": 14 - } - } - } - } - } - }, - { - "key": { - "name": { "key": { "name": { "key": "thriftCaller" } } }, - "scope": { "global_": { } }, - "decl": { - "function_": { - "key": { - "name": { - "key": { - "name": { "key": { "name": { "key": "thriftCaller" } } }, - "scope": { "global_": { } } - } - }, - "signature": { - "key": { "returns": { "key": "void" }, "parameters": [ ] } - }, - "source": { - "file": { "key": "test.cpp" }, - "lineBegin": 15, - "columnBegin": 1, - "lineEnd": 18, - "columnEnd": 1 - } - } - } - } - } - } -] \ No newline at end of file diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupFunctionDeclaration.perf b/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupFunctionDeclaration.perf deleted file mode 100644 index 62474121d..000000000 --- a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupFunctionDeclaration.perf +++ /dev/null @@ -1,5 +0,0 @@ -{ - "@generated": null, - "cxx1.FunctionDeclaration.5": 3, - "cxx1.FunctionQName.5": 3 -} \ No newline at end of file diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupFunctionDefinition.out b/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupFunctionDefinition.out deleted file mode 100644 index caabc40fc..000000000 --- a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupFunctionDefinition.out +++ /dev/null @@ -1,38 +0,0 @@ -[ - "@generated", - { - "key": { - "name": { "key": { "name": { "key": "thriftCaller" } } }, - "scope": { "global_": { } }, - "entity": { - "defn": { - "function_": { - "key": { - "declaration": { - "key": { - "name": { - "key": { - "name": { "key": { "name": { "key": "thriftCaller" } } }, - "scope": { "global_": { } } - } - }, - "signature": { - "key": { "returns": { "key": "void" }, "parameters": [ ] } - }, - "source": { - "file": { "key": "test.cpp" }, - "lineBegin": 15, - "columnBegin": 1, - "lineEnd": 18, - "columnEnd": 1 - } - } - }, - "isInline": false - } - } - } - } - } - } -] \ No newline at end of file diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupFunctionDefinition.perf b/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupFunctionDefinition.perf deleted file mode 100644 index 4651ad507..000000000 --- a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupFunctionDefinition.perf +++ /dev/null @@ -1,6 +0,0 @@ -{ - "@generated": null, - "cxx1.FunctionDeclaration.5": 3, - "cxx1.FunctionDefinition.5": 1, - "cxx1.FunctionQName.5": 3 -} \ No newline at end of file diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupFunctionSignatureDeclaration.out b/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupFunctionSignatureDeclaration.out deleted file mode 100644 index ad3573ed8..000000000 --- a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupFunctionSignatureDeclaration.out +++ /dev/null @@ -1,96 +0,0 @@ -[ - "@generated", - { - "key": { - "name": { "key": { "name": { "key": "thrift1" } } }, - "scope": { "global_": { } }, - "signature": { - "key": { "returns": { "key": "void" }, "parameters": [ ] } - }, - "decl": { - "function_": { - "key": { - "name": { - "key": { - "name": { "key": { "name": { "key": "thrift1" } } }, - "scope": { "global_": { } } - } - }, - "signature": { - "key": { "returns": { "key": "void" }, "parameters": [ ] } - }, - "source": { - "file": { "key": "test.cpp" }, - "lineBegin": 12, - "columnBegin": 1, - "lineEnd": 12, - "columnEnd": 14 - } - } - } - } - } - }, - { - "key": { - "name": { "key": { "name": { "key": "thrift2" } } }, - "scope": { "global_": { } }, - "signature": { - "key": { "returns": { "key": "void" }, "parameters": [ ] } - }, - "decl": { - "function_": { - "key": { - "name": { - "key": { - "name": { "key": { "name": { "key": "thrift2" } } }, - "scope": { "global_": { } } - } - }, - "signature": { - "key": { "returns": { "key": "void" }, "parameters": [ ] } - }, - "source": { - "file": { "key": "test.h" }, - "lineBegin": 11, - "columnBegin": 1, - "lineEnd": 11, - "columnEnd": 14 - } - } - } - } - } - }, - { - "key": { - "name": { "key": { "name": { "key": "thriftCaller" } } }, - "scope": { "global_": { } }, - "signature": { - "key": { "returns": { "key": "void" }, "parameters": [ ] } - }, - "decl": { - "function_": { - "key": { - "name": { - "key": { - "name": { "key": { "name": { "key": "thriftCaller" } } }, - "scope": { "global_": { } } - } - }, - "signature": { - "key": { "returns": { "key": "void" }, "parameters": [ ] } - }, - "source": { - "file": { "key": "test.cpp" }, - "lineBegin": 15, - "columnBegin": 1, - "lineEnd": 18, - "columnEnd": 1 - } - } - } - } - } - } -] \ No newline at end of file diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupFunctionSignatureDeclaration.perf b/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupFunctionSignatureDeclaration.perf deleted file mode 100644 index 62474121d..000000000 --- a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupFunctionSignatureDeclaration.perf +++ /dev/null @@ -1,5 +0,0 @@ -{ - "@generated": null, - "cxx1.FunctionDeclaration.5": 3, - "cxx1.FunctionQName.5": 3 -} \ No newline at end of file diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupFunctionSignatureDefinition.out b/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupFunctionSignatureDefinition.out deleted file mode 100644 index d4349de0f..000000000 --- a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupFunctionSignatureDefinition.out +++ /dev/null @@ -1,41 +0,0 @@ -[ - "@generated", - { - "key": { - "name": { "key": { "name": { "key": "thriftCaller" } } }, - "scope": { "global_": { } }, - "signature": { - "key": { "returns": { "key": "void" }, "parameters": [ ] } - }, - "entity": { - "defn": { - "function_": { - "key": { - "declaration": { - "key": { - "name": { - "key": { - "name": { "key": { "name": { "key": "thriftCaller" } } }, - "scope": { "global_": { } } - } - }, - "signature": { - "key": { "returns": { "key": "void" }, "parameters": [ ] } - }, - "source": { - "file": { "key": "test.cpp" }, - "lineBegin": 15, - "columnBegin": 1, - "lineEnd": 18, - "columnEnd": 1 - } - } - }, - "isInline": false - } - } - } - } - } - } -] \ No newline at end of file diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupFunctionSignatureDefinition.perf b/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupFunctionSignatureDefinition.perf deleted file mode 100644 index 4651ad507..000000000 --- a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupFunctionSignatureDefinition.perf +++ /dev/null @@ -1,6 +0,0 @@ -{ - "@generated": null, - "cxx1.FunctionDeclaration.5": 3, - "cxx1.FunctionDefinition.5": 1, - "cxx1.FunctionQName.5": 3 -} \ No newline at end of file diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupNamespaceDeclaration.out b/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupNamespaceDeclaration.out deleted file mode 100644 index c7ae735b9..000000000 --- a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupNamespaceDeclaration.out +++ /dev/null @@ -1 +0,0 @@ -[ "@generated" ] \ No newline at end of file diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupNamespaceDeclaration.perf b/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupNamespaceDeclaration.perf deleted file mode 100644 index 95c38ddc0..000000000 --- a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupNamespaceDeclaration.perf +++ /dev/null @@ -1 +0,0 @@ -{ "@generated": null } \ No newline at end of file diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupNamespaceDefinition.out b/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupNamespaceDefinition.out deleted file mode 100644 index c7ae735b9..000000000 --- a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupNamespaceDefinition.out +++ /dev/null @@ -1 +0,0 @@ -[ "@generated" ] \ No newline at end of file diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupNamespaceDefinition.perf b/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupNamespaceDefinition.perf deleted file mode 100644 index 95c38ddc0..000000000 --- a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupNamespaceDefinition.perf +++ /dev/null @@ -1 +0,0 @@ -{ "@generated": null } \ No newline at end of file diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/SearchByName.out b/glean/lang/codemarkup/tests/clang/xlang/entityreferences.out similarity index 100% rename from glean/lang/codemarkup/tests/clang/glass/cpp-xlang/SearchByName.out rename to glean/lang/codemarkup/tests/clang/xlang/entityreferences.out diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupDeclaration.perf b/glean/lang/codemarkup/tests/clang/xlang/entityreferences.perf similarity index 100% rename from glean/lang/codemarkup/tests/clang/glass/cpp-xlang/symbolid.cxx.LookupDeclaration.perf rename to glean/lang/codemarkup/tests/clang/xlang/entityreferences.perf diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/entityreferences.query b/glean/lang/codemarkup/tests/clang/xlang/entityreferences.query similarity index 100% rename from glean/lang/codemarkup/tests/clang/glass/cpp-xlang/entityreferences.query rename to glean/lang/codemarkup/tests/clang/xlang/entityreferences.query diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/test.cpp b/glean/lang/codemarkup/tests/clang/xlang/thrift/test.cpp similarity index 100% rename from glean/lang/codemarkup/tests/clang/glass/cpp-xlang/test.cpp rename to glean/lang/codemarkup/tests/clang/xlang/thrift/test.cpp diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/test.h b/glean/lang/codemarkup/tests/clang/xlang/thrift/test.h similarity index 100% rename from glean/lang/codemarkup/tests/clang/glass/cpp-xlang/test.h rename to glean/lang/codemarkup/tests/clang/xlang/thrift/test.h diff --git a/glean/lang/codemarkup/tests/clang/glass/cpp-xlang/test.thrift b/glean/lang/codemarkup/tests/clang/xlang/thrift/test.thrift similarity index 100% rename from glean/lang/codemarkup/tests/clang/glass/cpp-xlang/test.thrift rename to glean/lang/codemarkup/tests/clang/xlang/thrift/test.thrift