Suppress SupportTests.LockFileManagerTest on win32 for investigating.
authorNAKAMURA Takumi <geek4civic@gmail.com>
Sat, 22 Mar 2014 00:27:17 +0000 (00:27 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Sat, 22 Mar 2014 00:27:17 +0000 (00:27 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204533 91177308-0d34-0410-b5e6-96231b3b80d8

unittests/Support/LockFileManagerTest.cpp

index 91339ff38da19ddf42d8f10c55ee05cb221b11d8..79f4519614e87e89a20841d38b22c8517d215398 100644 (file)
@@ -44,6 +44,7 @@ TEST(LockFileManagerTest, Basic) {
   ASSERT_FALSE(EC);
 }
 
+#if !defined(_WIN32)
 TEST(LockFileManagerTest, LinkLockExists) {
   SmallString<64> TmpDir;
   error_code EC;
@@ -112,5 +113,6 @@ TEST(LockFileManagerTest, RelativePath) {
 
   chdir(OrigPath);
 }
+#endif
 
 } // end anonymous namespace