You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by ji...@apache.org on 2016/03/16 01:22:48 UTC

mesos git commit: Fixed linux fs isolator multi containers test.

Repository: mesos
Updated Branches:
  refs/heads/master 5278e5cc5 -> 3d7feed63


Fixed linux fs isolator multi containers test.

Review: https://reviews.apache.org/r/44867/


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

Branch: refs/heads/master
Commit: 3d7feed6348e952f76924786195a595747453e74
Parents: 5278e5c
Author: Gilbert Song <so...@gmail.com>
Authored: Tue Mar 15 17:22:39 2016 -0700
Committer: Jie Yu <yu...@gmail.com>
Committed: Tue Mar 15 17:22:39 2016 -0700

----------------------------------------------------------------------
 src/tests/containerizer/filesystem_isolator_tests.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/3d7feed6/src/tests/containerizer/filesystem_isolator_tests.cpp
----------------------------------------------------------------------
diff --git a/src/tests/containerizer/filesystem_isolator_tests.cpp b/src/tests/containerizer/filesystem_isolator_tests.cpp
index e72239a..b1f2c98 100644
--- a/src/tests/containerizer/filesystem_isolator_tests.cpp
+++ b/src/tests/containerizer/filesystem_isolator_tests.cpp
@@ -1315,8 +1315,8 @@ TEST_F(LinuxFilesystemIsolatorTest, ROOT_MultipleContainers)
   Future<containerizer::Termination> wait2 =
     containerizer.get()->wait(containerId2);
 
-  AWAIT_READY(wait1);
-  AWAIT_READY(wait2);
+  AWAIT_READY_FOR(wait1, Seconds(60));
+  AWAIT_READY_FOR(wait2, Seconds(60));
 
   // Executor 1 was forcefully killed.
   EXPECT_TRUE(wait1.get().has_status());