summaryrefslogtreecommitdiff
path: root/unittests
diff options
context:
space:
mode:
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>2014-03-21 01:25:37 +0000
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>2014-03-21 01:25:37 +0000
commit2c8cd9a0baa99a66ebde72dc688ef3e9239890e0 (patch)
tree38ff0c58ae6367871e3571fe334a077259d3e030 /unittests
parent5b460ed4cdba9575891757b1796c0a6368b7d942 (diff)
downloadllvm-2c8cd9a0baa99a66ebde72dc688ef3e9239890e0.tar.gz
llvm-2c8cd9a0baa99a66ebde72dc688ef3e9239890e0.tar.bz2
llvm-2c8cd9a0baa99a66ebde72dc688ef3e9239890e0.tar.xz
[Support] Make sure sys::fs::remove can remove symbolic links and make sure LockFileManager can handle a symbolic link that points nowhere.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204422 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests')
-rw-r--r--unittests/Support/LockFileManagerTest.cpp32
1 files changed, 32 insertions, 0 deletions
diff --git a/unittests/Support/LockFileManagerTest.cpp b/unittests/Support/LockFileManagerTest.cpp
index 1f949a369e..6392739778 100644
--- a/unittests/Support/LockFileManagerTest.cpp
+++ b/unittests/Support/LockFileManagerTest.cpp
@@ -44,4 +44,36 @@ TEST(LockFileManagerTest, Basic) {
ASSERT_FALSE(EC);
}
+TEST(LockFileManagerTest, LinkLockExists) {
+ SmallString<64> TmpDir;
+ error_code EC;
+ EC = sys::fs::createUniqueDirectory("LockFileManagerTestDir", TmpDir);
+ ASSERT_FALSE(EC);
+
+ SmallString<64> LockedFile(TmpDir);
+ sys::path::append(LockedFile, "file");
+
+ SmallString<64> FileLocK(TmpDir);
+ sys::path::append(FileLocK, "file.lock");
+
+ SmallString<64> TmpFileLock(TmpDir);
+ sys::path::append(TmpFileLock, "file.lock-000");
+
+ EC = sys::fs::create_link(TmpFileLock.str(), FileLocK.str());
+ ASSERT_FALSE(EC);
+
+ {
+ // The lock file doesn't point to a real file, so we should successfully
+ // acquire it.
+ LockFileManager Locked(LockedFile);
+ EXPECT_EQ(LockFileManager::LFS_Owned, Locked.getState());
+ }
+
+ // Now that the lock is out of scope, the file should be gone.
+ EXPECT_FALSE(sys::fs::exists(StringRef(LockedFile)));
+
+ EC = sys::fs::remove(StringRef(TmpDir));
+ ASSERT_FALSE(EC);
+}
+
} // end anonymous namespace