[llvm-commits] [llvm] r159099 - /llvm/trunk/unittests/Support/Path.cpp

NAKAMURA Takumi geek4civic at gmail.com
Sat Jun 23 20:48:41 PDT 2012


Author: chapuni
Date: Sat Jun 23 22:48:40 2012
New Revision: 159099

URL: http://llvm.org/viewvc/llvm-project?rev=159099&view=rev
Log:
unittests/Support/Path.cpp: [Win32] Suppress FileSystemTest.FileMapping for now.

Modified:
    llvm/trunk/unittests/Support/Path.cpp

Modified: llvm/trunk/unittests/Support/Path.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/unittests/Support/Path.cpp?rev=159099&r1=159098&r2=159099&view=diff
==============================================================================
--- llvm/trunk/unittests/Support/Path.cpp (original)
+++ llvm/trunk/unittests/Support/Path.cpp Sat Jun 23 22:48:40 2012
@@ -340,6 +340,7 @@
 }
 #endif
 
+#if !defined(_WIN32) // FIXME: temporary suppressed.
 TEST_F(FileSystemTest, FileMapping) {
   // Create a temp file.
   int FileDescriptor;
@@ -376,6 +377,7 @@
   MappedMemory = NULL;
   Memory = NULL;
 }
+#endif
 
 
 } // anonymous namespace





More information about the llvm-commits mailing list