unittests/Support/Path.cpp: [Win32] Suppress FileSystemTest.Permissions for now.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@159098 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/unittests/Support/Path.cpp b/unittests/Support/Path.cpp
index 766c990..660d612 100644
--- a/unittests/Support/Path.cpp
+++ b/unittests/Support/Path.cpp
@@ -312,7 +312,7 @@
   }
 }
 
-
+#if !defined(_WIN32) // FIXME: Win32 has different permission schema.
 TEST_F(FileSystemTest, Permissions) {
   // Create a temp file.
   int FileDescriptor;
@@ -338,6 +338,7 @@
   AnyWriteBits = (Status.permissions() & AllWrite);
   EXPECT_TRUE(AnyWriteBits);
 }
+#endif
 
 TEST_F(FileSystemTest, FileMapping) {
   // Create a temp file.