aboutsummaryrefslogtreecommitdiff
path: root/llvm/unittests/Support/LockFileManagerTest.cpp
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2014-03-22 00:27:17 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2014-03-22 00:27:17 +0000
commitd1c22bef6f012cb2549bd2c7fc3f2c8d7eefc728 (patch)
tree3d19e5791d3bd2f01c39349afd3dec333305221f /llvm/unittests/Support/LockFileManagerTest.cpp
parent7b622ca9d99e94a2ba37b4ae87a2af7008970a9d (diff)
downloadllvm-d1c22bef6f012cb2549bd2c7fc3f2c8d7eefc728.zip
llvm-d1c22bef6f012cb2549bd2c7fc3f2c8d7eefc728.tar.gz
llvm-d1c22bef6f012cb2549bd2c7fc3f2c8d7eefc728.tar.bz2
Suppress SupportTests.LockFileManagerTest on win32 for investigating.
llvm-svn: 204533
Diffstat (limited to 'llvm/unittests/Support/LockFileManagerTest.cpp')
-rw-r--r--llvm/unittests/Support/LockFileManagerTest.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/unittests/Support/LockFileManagerTest.cpp b/llvm/unittests/Support/LockFileManagerTest.cpp
index 91339ff..79f4519 100644
--- a/llvm/unittests/Support/LockFileManagerTest.cpp
+++ b/llvm/unittests/Support/LockFileManagerTest.cpp
@@ -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