[clang-tools-extra] r350512 - [clangd] Disable BackgroundIndexTest.PeriodicalIndex
Ilya Biryukov via cfe-commits
cfe-commits at lists.llvm.org
Mon Jan 7 03:18:11 PST 2019
Author: ibiryukov
Date: Mon Jan 7 03:18:11 2019
New Revision: 350512
URL: http://llvm.org/viewvc/llvm-project?rev=350512&view=rev
Log:
[clangd] Disable BackgroundIndexTest.PeriodicalIndex
It sometimes fails on AArch64.
Modified:
clang-tools-extra/trunk/unittests/clangd/BackgroundIndexTests.cpp
Modified: clang-tools-extra/trunk/unittests/clangd/BackgroundIndexTests.cpp
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/unittests/clangd/BackgroundIndexTests.cpp?rev=350512&r1=350511&r2=350512&view=diff
==============================================================================
--- clang-tools-extra/trunk/unittests/clangd/BackgroundIndexTests.cpp (original)
+++ clang-tools-extra/trunk/unittests/clangd/BackgroundIndexTests.cpp Mon Jan 7 03:18:11 2019
@@ -243,7 +243,9 @@ TEST_F(BackgroundIndexTest, DirectInclud
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;
More information about the cfe-commits
mailing list