Author: sammccall Date: Mon Oct 15 23:32:14 2018 New Revision: 344586 URL: http://llvm.org/viewvc/llvm-project?rev=344586&view=rev Log: [clangd] Disable timeouting test while investigating
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=344586&r1=344585&r2=344586&view=diff ============================================================================== --- clang-tools-extra/trunk/unittests/clangd/BackgroundIndexTests.cpp (original) +++ clang-tools-extra/trunk/unittests/clangd/BackgroundIndexTests.cpp Mon Oct 15 23:32:14 2018 @@ -11,6 +11,8 @@ namespace clangd { MATCHER_P(Named, N, "") { return arg.Name == N; } +// Temporarily disabled: test timing out on buildbots. +#if 0 TEST(BackgroundIndexTest, IndexTwoFiles) { MockFSProvider FS; // a.h yields different symbols when included by A.cc vs B.cc. @@ -32,6 +34,7 @@ TEST(BackgroundIndexTest, IndexTwoFiles) EXPECT_THAT(runFuzzyFind(Idx, ""), UnorderedElementsAre(Named("a_h"), Named("foo"), Named("bar"))); } +#endif } // namespace clangd } // namespace clang _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits