You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by ya...@apache.org on 2017/08/25 16:31:43 UTC

mesos git commit: Fixed a rmdir test missed by be8d7c2a6.

Repository: mesos
Updated Branches:
  refs/heads/master 4468e7bba -> e17be1925


Fixed a rmdir test missed by be8d7c2a6.


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/e17be192
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/e17be192
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/e17be192

Branch: refs/heads/master
Commit: e17be192519bd8b4fde45b833ac26d5a7a11e688
Parents: 4468e7b
Author: Jiang Yan Xu <xu...@apple.com>
Authored: Fri Aug 25 09:30:49 2017 -0700
Committer: Jiang Yan Xu <xu...@apple.com>
Committed: Fri Aug 25 09:31:34 2017 -0700

----------------------------------------------------------------------
 3rdparty/stout/tests/os/rmdir_tests.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/e17be192/3rdparty/stout/tests/os/rmdir_tests.cpp
----------------------------------------------------------------------
diff --git a/3rdparty/stout/tests/os/rmdir_tests.cpp b/3rdparty/stout/tests/os/rmdir_tests.cpp
index 0fcc2d1..86ec623 100644
--- a/3rdparty/stout/tests/os/rmdir_tests.cpp
+++ b/3rdparty/stout/tests/os/rmdir_tests.cpp
@@ -455,7 +455,7 @@ TEST_F(RmdirContinueOnErrorTest, RemoveWithContinueOnError)
   EXPECT_TRUE(os::exists(regularFile));
 
   // Run rmdir with `continueOnError = true`.
-  ASSERT_SOME(os::rmdir(directory, true, true, true));
+  ASSERT_ERROR(os::rmdir(directory, true, true, true));
 
   EXPECT_TRUE(os::exists(directory));
   EXPECT_TRUE(os::exists(mountPoint_));