summaryrefslogtreecommitdiff
path: root/unittests
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2014-03-23 23:55:57 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2014-03-23 23:55:57 +0000
commit12da52f91753e521b8e402305b07a3cb6070571f (patch)
tree8d928c1af46e34fd808eb5a58f7fcc22181d4afb /unittests
parentb0c513b9ba3d0a17c58ca91cd71b1c420ca0eec6 (diff)
downloadllvm-12da52f91753e521b8e402305b07a3cb6070571f.tar.gz
llvm-12da52f91753e521b8e402305b07a3cb6070571f.tar.bz2
llvm-12da52f91753e521b8e402305b07a3cb6070571f.tar.xz
SupportTests.LockFileManagerTest: Add assertions for Win32.
- create_link doesn't work for nonexistent file. - remove cannot remove working directory. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204579 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests')
-rw-r--r--unittests/Support/LockFileManagerTest.cpp18
1 files changed, 16 insertions, 2 deletions
diff --git a/unittests/Support/LockFileManagerTest.cpp b/unittests/Support/LockFileManagerTest.cpp
index 79f4519614..b80cdf9b66 100644
--- a/unittests/Support/LockFileManagerTest.cpp
+++ b/unittests/Support/LockFileManagerTest.cpp
@@ -44,7 +44,6 @@ TEST(LockFileManagerTest, Basic) {
ASSERT_FALSE(EC);
}
-#if !defined(_WIN32)
TEST(LockFileManagerTest, LinkLockExists) {
SmallString<64> TmpDir;
error_code EC;
@@ -61,7 +60,13 @@ TEST(LockFileManagerTest, LinkLockExists) {
sys::path::append(TmpFileLock, "file.lock-000");
EC = sys::fs::create_link(TmpFileLock.str(), FileLocK.str());
+#if defined(_WIN32)
+ // Win32 cannot create link with nonexistent file, since create_link is
+ // implemented as hard link.
+ ASSERT_EQ(EC, errc::no_such_file_or_directory);
+#else
ASSERT_FALSE(EC);
+#endif
{
// The lock file doesn't point to a real file, so we should successfully
@@ -109,10 +114,19 @@ TEST(LockFileManagerTest, RelativePath) {
EC = sys::fs::remove("inner");
ASSERT_FALSE(EC);
EC = sys::fs::remove(StringRef(TmpDir));
+#if defined(_WIN32)
+ // Win32 cannot remove working directory.
+ ASSERT_EQ(EC, errc::permission_denied);
+#else
ASSERT_FALSE(EC);
+#endif
chdir(OrigPath);
-}
+
+#if defined(_WIN32)
+ EC = sys::fs::remove(StringRef(TmpDir));
+ ASSERT_FALSE(EC);
#endif
+}
} // end anonymous namespace