aboutsummaryrefslogtreecommitdiff
path: root/clang-tools-extra
diff options
context:
space:
mode:
authorIlya Biryukov <ibiryukov@google.com>2019-01-07 11:18:11 +0000
committerIlya Biryukov <ibiryukov@google.com>2019-01-07 11:18:11 +0000
commit082072873f78f2f815bf501515bdd4198a0e595d (patch)
tree4c7a9b4e501a8477a1cfe5636afc1250c8aa72e5 /clang-tools-extra
parented42ea4707c3c564b3bd52a23c11b81988156c07 (diff)
[clangd] Disable BackgroundIndexTest.PeriodicalIndex
It sometimes fails on AArch64. llvm-svn: 350512
Diffstat (limited to 'clang-tools-extra')
-rw-r--r--clang-tools-extra/unittests/clangd/BackgroundIndexTests.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/clang-tools-extra/unittests/clangd/BackgroundIndexTests.cpp b/clang-tools-extra/unittests/clangd/BackgroundIndexTests.cpp
index 3359a727be89..67993653dd3c 100644
--- a/clang-tools-extra/unittests/clangd/BackgroundIndexTests.cpp
+++ b/clang-tools-extra/unittests/clangd/BackgroundIndexTests.cpp
@@ -243,7 +243,9 @@ TEST_F(BackgroundIndexTest, DirectIncludesTest) {
EmptyIncludeNode());
}
-TEST_F(BackgroundIndexTest, PeriodicalIndex) {
+// FIXME: figure out the right timeouts or rewrite to not use the timeouts and
+// re-enable.
+TEST_F(BackgroundIndexTest, DISABLED_PeriodicalIndex) {
MockFSProvider FS;
llvm::StringMap<std::string> Storage;
size_t CacheHits = 0;