1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

Asserting that the call to chdir succeeds in this test. Fixes some -Wunused-result warnings.

llvm-svn: 215539
This commit is contained in:
Aaron Ballman 2014-08-13 11:17:41 +00:00
parent 5652971ecf
commit a135e14126

View File

@ -95,7 +95,7 @@ TEST(LockFileManagerTest, RelativePath) {
char PathBuf[1024];
const char *OrigPath = getcwd(PathBuf, 1024);
chdir(TmpDir.c_str());
ASSERT_FALSE(chdir(TmpDir.c_str()));
sys::fs::create_directory("inner");
SmallString<64> LockedFile("inner");
@ -118,7 +118,7 @@ TEST(LockFileManagerTest, RelativePath) {
EC = sys::fs::remove("inner");
ASSERT_FALSE(EC);
chdir(OrigPath);
ASSERT_FALSE(chdir(OrigPath));
EC = sys::fs::remove(StringRef(TmpDir));
ASSERT_FALSE(EC);