diff options
author | Reid Kleckner <reid@kleckner.net> | 2013-08-07 01:22:04 +0000 |
---|---|---|
committer | Reid Kleckner <reid@kleckner.net> | 2013-08-07 01:22:04 +0000 |
commit | 7de8ea3d00f393e0847495d9cd6660204c10e75c (patch) | |
tree | be18f29af692d197f9e1905522cf4f65a7d90777 /llvm/unittests/Support/LockFileManagerTest.cpp | |
parent | ac20e61b791703ac1b86683a34cb2fd9275d95d0 (diff) | |
download | llvm-7de8ea3d00f393e0847495d9cd6660204c10e75c.zip llvm-7de8ea3d00f393e0847495d9cd6660204c10e75c.tar.gz llvm-7de8ea3d00f393e0847495d9cd6660204c10e75c.tar.bz2 |
Fix boolean logic in LockFileManager and test it
This fixes a bug from r187826.
Reviewers: hans
Differential Revision: http://llvm-reviews.chandlerc.com/D1304
llvm-svn: 187846
Diffstat (limited to 'llvm/unittests/Support/LockFileManagerTest.cpp')
-rw-r--r-- | llvm/unittests/Support/LockFileManagerTest.cpp | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/llvm/unittests/Support/LockFileManagerTest.cpp b/llvm/unittests/Support/LockFileManagerTest.cpp new file mode 100644 index 0000000..5c73b9f --- /dev/null +++ b/llvm/unittests/Support/LockFileManagerTest.cpp @@ -0,0 +1,48 @@ +//===- unittests/LockFileManagerTest.cpp - LockFileManager tests ----------===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +#include "llvm/Support/LockFileManager.h" +#include "llvm/Support/FileSystem.h" +#include "llvm/Support/Path.h" + +#include "gtest/gtest.h" + +#include <memory> + +using namespace llvm; + +namespace { + +TEST(LockFileManagerTest, Basic) { + SmallString<64> TmpDir; + error_code EC; + EC = sys::fs::createUniqueDirectory("LockFileManagerTestDir", TmpDir); + ASSERT_FALSE(EC); + + SmallString<64> LockedFile(TmpDir); + sys::path::append(LockedFile, "file.lock"); + + { + // The lock file should not exist, so we should successfully acquire it. + LockFileManager Locked1(LockedFile); + EXPECT_EQ(LockFileManager::LFS_Owned, Locked1.getState()); + + // Attempting to reacquire the lock should fail. Waiting on it would cause + // deadlock, so don't try that. + LockFileManager Locked2(LockedFile); + EXPECT_NE(LockFileManager::LFS_Owned, Locked2.getState()); + } + + // Now that the lock is out of scope, the file should be gone. + EXPECT_FALSE(sys::fs::exists(StringRef(LockedFile))); + + sys::fs::remove_all(StringRef(TmpDir)); +} + +} // end anonymous namespace |