From: NAKAMURA Takumi Date: Sun, 24 Jun 2012 03:48:40 +0000 (+0000) Subject: unittests/Support/Path.cpp: [Win32] Suppress FileSystemTest.FileMapping for now. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=ae241eabf59962898c68a13493fe3cd73bf3ab65;p=oota-llvm.git unittests/Support/Path.cpp: [Win32] Suppress FileSystemTest.FileMapping for now. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@159099 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/unittests/Support/Path.cpp b/unittests/Support/Path.cpp index 660d612e647..a071a5a8d69 100644 --- a/unittests/Support/Path.cpp +++ b/unittests/Support/Path.cpp @@ -340,6 +340,7 @@ TEST_F(FileSystemTest, Permissions) { } #endif +#if !defined(_WIN32) // FIXME: temporary suppressed. TEST_F(FileSystemTest, FileMapping) { // Create a temp file. int FileDescriptor; @@ -376,6 +377,7 @@ TEST_F(FileSystemTest, FileMapping) { MappedMemory = NULL; Memory = NULL; } +#endif } // anonymous namespace