[clang-tools-extra] r342957 - [clangd] NFC: Remove test duplicate
Kirill Bobyrev via cfe-commits
cfe-commits at lists.llvm.org
Tue Sep 25 02:47:01 PDT 2018
Author: omtcyfz
Date: Tue Sep 25 02:47:01 2018
New Revision: 342957
URL: http://llvm.org/viewvc/llvm-project?rev=342957&view=rev
Log:
[clangd] NFC: Remove test duplicate
`FuzzyMatchQ` test was a duplicate of `FuzzyMatch` pulled from MemIndex
tests.
Modified:
clang-tools-extra/trunk/unittests/clangd/DexTests.cpp
Modified: clang-tools-extra/trunk/unittests/clangd/DexTests.cpp
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/unittests/clangd/DexTests.cpp?rev=342957&r1=342956&r2=342957&view=diff
==============================================================================
--- clang-tools-extra/trunk/unittests/clangd/DexTests.cpp (original)
+++ clang-tools-extra/trunk/unittests/clangd/DexTests.cpp Tue Sep 25 02:47:01 2018
@@ -475,17 +475,6 @@ TEST(Dex, FuzzyFind) {
"other::A"));
}
-TEST(DexTest, FuzzyMatchQ) {
- auto I = Dex::build(
- generateSymbols({"LaughingOutLoud", "LionPopulation", "LittleOldLady"}),
- URISchemes);
- FuzzyFindRequest Req;
- Req.Query = "lol";
- Req.Limit = 2;
- EXPECT_THAT(match(*I, Req),
- UnorderedElementsAre("LaughingOutLoud", "LittleOldLady"));
-}
-
// FIXME(kbobyrev): This test is different for Dex and MemIndex: while
// MemIndex manages response deduplication, Dex simply returns all matched
// symbols which means there might be equivalent symbols in the response.
More information about the cfe-commits
mailing list