diff options
author | Aaron Ballman <aaron@aaronballman.com> | 2014-08-13 11:17:41 +0000 |
---|---|---|
committer | Aaron Ballman <aaron@aaronballman.com> | 2014-08-13 11:17:41 +0000 |
commit | 74c2c8f160ae0a27db0f1382cce2c47da0b66f2b (patch) | |
tree | efa5c95015770759f78ad24919bf4911c415cc68 /llvm/unittests/Support/LockFileManagerTest.cpp | |
parent | 0fb998110abcf3d67495d12f854a1576b182d811 (diff) | |
download | bcm5719-llvm-74c2c8f160ae0a27db0f1382cce2c47da0b66f2b.tar.gz bcm5719-llvm-74c2c8f160ae0a27db0f1382cce2c47da0b66f2b.zip |
Asserting that the call to chdir succeeds in this test. Fixes some -Wunused-result warnings.
llvm-svn: 215539
Diffstat (limited to 'llvm/unittests/Support/LockFileManagerTest.cpp')
-rw-r--r-- | llvm/unittests/Support/LockFileManagerTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/unittests/Support/LockFileManagerTest.cpp b/llvm/unittests/Support/LockFileManagerTest.cpp index 885b7d60536..efe3c3088b3 100644 --- a/llvm/unittests/Support/LockFileManagerTest.cpp +++ b/llvm/unittests/Support/LockFileManagerTest.cpp @@ -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); |