From: Aaron Ballman Date: Wed, 13 Aug 2014 11:17:41 +0000 (+0000) Subject: Asserting that the call to chdir succeeds in this test. Fixes some -Wunused-result... X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=3c02eb1b9625c414957faebfb405beed21efbbd5;p=oota-llvm.git Asserting that the call to chdir succeeds in this test. Fixes some -Wunused-result warnings. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@215539 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/unittests/Support/LockFileManagerTest.cpp b/unittests/Support/LockFileManagerTest.cpp index 885b7d60536..efe3c3088b3 100644 --- a/unittests/Support/LockFileManagerTest.cpp +++ b/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);