forked from OSchip/llvm-project
[clangd] Temporarily disable VFS stats cache test for windows.
llvm-svn: 343637
This commit is contained in:
parent
ac98683423
commit
16922d0718
|
@ -963,6 +963,8 @@ TEST_F(ClangdVFSTest, ChangedHeaderFromISystem) {
|
|||
Field(&CodeCompletion::Name, "baz")));
|
||||
}
|
||||
|
||||
// FIXME(ioeric): make this work for windows again.
|
||||
#ifndef _WIN32
|
||||
// Check that running code completion doesn't stat() a bunch of files from the
|
||||
// preamble again. (They should be using the preamble's stat-cache)
|
||||
TEST(ClangdTests, PreambleVFSStatCache) {
|
||||
|
@ -1028,6 +1030,7 @@ TEST(ClangdTests, PreambleVFSStatCache) {
|
|||
EXPECT_THAT(Completions,
|
||||
ElementsAre(Field(&CodeCompletion::Name, "TestSym")));
|
||||
}
|
||||
#endif
|
||||
|
||||
} // namespace
|
||||
} // namespace clangd
|
||||
|
|
Loading…
Reference in New Issue