[clang-tools-extra] 7029e5d - [clangd] Actually parse Index section of the YAML file.
Adam Czachorowski via cfe-commits
cfe-commits at lists.llvm.org
Wed Sep 16 04:12:32 PDT 2020
Author: Adam Czachorowski
Date: 2020-09-16T13:11:02+02:00
New Revision: 7029e5d4ca20d20982da8efe89de27acd8d7d75b
URL: https://github.com/llvm/llvm-project/commit/7029e5d4ca20d20982da8efe89de27acd8d7d75b
DIFF: https://github.com/llvm/llvm-project/commit/7029e5d4ca20d20982da8efe89de27acd8d7d75b.diff
LOG: [clangd] Actually parse Index section of the YAML file.
This fixes a bug in dbf486c0de92c76df77c1a1f815cf16533ecbb3a, which
introduced the Index section of the config, but did not register the
parse method, so it didn't work in a YAML file (but did in a test).
Differential Revision: https://reviews.llvm.org/D87710
Added:
Modified:
clang-tools-extra/clangd/ConfigYAML.cpp
clang-tools-extra/clangd/unittests/ConfigYAMLTests.cpp
Removed:
################################################################################
diff --git a/clang-tools-extra/clangd/ConfigYAML.cpp b/clang-tools-extra/clangd/ConfigYAML.cpp
index 16639f6649c2..9988fe376648 100644
--- a/clang-tools-extra/clangd/ConfigYAML.cpp
+++ b/clang-tools-extra/clangd/ConfigYAML.cpp
@@ -38,6 +38,7 @@ class Parser {
DictParser Dict("Config", this);
Dict.handle("If", [&](Node &N) { parse(F.If, N); });
Dict.handle("CompileFlags", [&](Node &N) { parse(F.CompileFlags, N); });
+ Dict.handle("Index", [&](Node &N) { parse(F.Index, N); });
Dict.parse(N);
return !(N.failed() || HadError);
}
diff --git a/clang-tools-extra/clangd/unittests/ConfigYAMLTests.cpp b/clang-tools-extra/clangd/unittests/ConfigYAMLTests.cpp
index a9526ce2367c..27b1c0cfc56d 100644
--- a/clang-tools-extra/clangd/unittests/ConfigYAMLTests.cpp
+++ b/clang-tools-extra/clangd/unittests/ConfigYAMLTests.cpp
@@ -47,16 +47,21 @@ CompileFlags: { Add: [foo, bar] }
Add: |
b
az
+---
+Index:
+ Background: Skip
)yaml";
auto Results = Fragment::parseYAML(YAML, "config.yaml", Diags.callback());
EXPECT_THAT(Diags.Diagnostics, IsEmpty());
- ASSERT_EQ(Results.size(), 2u);
- EXPECT_FALSE(Results.front().If.HasUnrecognizedCondition);
- EXPECT_THAT(Results.front().If.PathMatch, ElementsAre(Val("abc")));
- EXPECT_THAT(Results.front().CompileFlags.Add,
- ElementsAre(Val("foo"), Val("bar")));
+ ASSERT_EQ(Results.size(), 3u);
+ EXPECT_FALSE(Results[0].If.HasUnrecognizedCondition);
+ EXPECT_THAT(Results[0].If.PathMatch, ElementsAre(Val("abc")));
+ EXPECT_THAT(Results[0].CompileFlags.Add, ElementsAre(Val("foo"), Val("bar")));
+
+ EXPECT_THAT(Results[1].CompileFlags.Add, ElementsAre(Val("b\naz\n")));
- EXPECT_THAT(Results.back().CompileFlags.Add, ElementsAre(Val("b\naz\n")));
+ ASSERT_TRUE(Results[2].Index.Background);
+ EXPECT_EQ("Skip", *Results[2].Index.Background.getValue());
}
TEST(ParseYAML, Locations) {
More information about the cfe-commits
mailing list