forked from OSchip/llvm-project
Disable the ScanDepsReuseFilemanager test on Windows
Right now it fails. I'm going to investigate it and fix it in follow-up commits. llvm-svn: 369688
This commit is contained in:
parent
18796da0cd
commit
7a490c5b06
|
@ -26,6 +26,8 @@
|
|||
namespace clang {
|
||||
namespace tooling {
|
||||
|
||||
#ifndef _WIN32
|
||||
|
||||
namespace {
|
||||
|
||||
/// Prints out all of the gathered dependencies into a string.
|
||||
|
@ -114,5 +116,7 @@ TEST(DependencyScanner, ScanDepsReuseFilemanager) {
|
|||
EXPECT_EQ(Files.getNumUniqueRealFiles(), 2u);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
} // end namespace tooling
|
||||
} // end namespace clang
|
||||
|
|
Loading…
Reference in New Issue