r369688 - Disable the ScanDepsReuseFilemanager test on Windows

Alex Lorenz via cfe-commits cfe-commits at lists.llvm.org
Thu Aug 22 12:00:09 PDT 2019


Author: arphaman
Date: Thu Aug 22 12:00:08 2019
New Revision: 369688

URL: http://llvm.org/viewvc/llvm-project?rev=369688&view=rev
Log:
Disable the ScanDepsReuseFilemanager test on Windows

Right now it fails.
I'm going to investigate it and fix it in follow-up commits.

Modified:
    cfe/trunk/unittests/Tooling/DependencyScannerTest.cpp

Modified: cfe/trunk/unittests/Tooling/DependencyScannerTest.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/unittests/Tooling/DependencyScannerTest.cpp?rev=369688&r1=369687&r2=369688&view=diff
==============================================================================
--- cfe/trunk/unittests/Tooling/DependencyScannerTest.cpp (original)
+++ cfe/trunk/unittests/Tooling/DependencyScannerTest.cpp Thu Aug 22 12:00:08 2019
@@ -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, ScanDepsReuseFil
   EXPECT_EQ(Files.getNumUniqueRealFiles(), 2u);
 }
 
+#endif
+
 } // end namespace tooling
 } // end namespace clang




More information about the cfe-commits mailing list