llvm-6502/unittests/Support/LockFileManagerTest.cpp
Chandler Carruth 974a445bd9 Re-sort all of the includes with ./utils/sort_includes.py so that
subsequent changes are easier to review. About to fix some layering
issues, and wanted to separate out the necessary churn.

Also comment and sink the include of "Windows.h" in three .inc files to
match the usage in Memory.inc.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@198685 91177308-0d34-0410-b5e6-96231b3b80d8
2014-01-07 11:48:04 +00:00

47 lines
1.4 KiB
C++

//===- 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