diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2013-12-22 00:04:03 +0000 |
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2013-12-22 00:04:03 +0000 |
| commit | f8af5cf600354830d4ccf59732403f0f073eccb9 (patch) | |
| tree | 2ba0398b4c42ad4f55561327538044fd2c925a8b /unittests/Support/LockFileManagerTest.cpp | |
| parent | 59d6cff90eecf31cb3dd860c4e786674cfdd42eb (diff) | |
Notes
Diffstat (limited to 'unittests/Support/LockFileManagerTest.cpp')
| -rw-r--r-- | unittests/Support/LockFileManagerTest.cpp | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/unittests/Support/LockFileManagerTest.cpp b/unittests/Support/LockFileManagerTest.cpp new file mode 100644 index 000000000000..5c73b9f5e235 --- /dev/null +++ b/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 |
