summaryrefslogtreecommitdiff
path: root/unittests
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
commit4696def45d683f1b1ebed8d85688f4c31fce6258 (patch)
treef84eb6a0a08a84635554ec35c5f5df209e07d1e7 /unittests
parente25ab8e3054c99810b315a441b2cd0a892486d91 (diff)
downloadllvm-4696def45d683f1b1ebed8d85688f4c31fce6258.tar.gz
llvm-4696def45d683f1b1ebed8d85688f4c31fce6258.tar.bz2
llvm-4696def45d683f1b1ebed8d85688f4c31fce6258.tar.xz
Suppress SupportTests.LockFileManagerTest on win32 for investigating.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204533 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests')
-rw-r--r--unittests/Support/LockFileManagerTest.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/unittests/Support/LockFileManagerTest.cpp b/unittests/Support/LockFileManagerTest.cpp
index 91339ff38d..79f4519614 100644
--- a/unittests/Support/LockFileManagerTest.cpp
+++ b/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