diff options
Diffstat (limited to 'unittests/Support')
-rw-r--r-- | unittests/Support/Path.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
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 @@ TEST_F(FileSystemTest, Magic) { } } - +#if !defined(_WIN32) // FIXME: Win32 has different permission schema. TEST_F(FileSystemTest, Permissions) { // Create a temp file. int FileDescriptor; @@ -338,6 +338,7 @@ TEST_F(FileSystemTest, Permissions) { AnyWriteBits = (Status.permissions() & AllWrite); EXPECT_TRUE(AnyWriteBits); } +#endif TEST_F(FileSystemTest, FileMapping) { // Create a temp file. |