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/02/20 06:50:45 UTC

[2/2] mesos git commit: Increased the timeout in disk-heavy FilesystemIsolatorTests.

Increased the timeout in disk-heavy FilesystemIsolatorTests.

Increases by 2x the amount of wait time in the
`LinuxFilesystemIsolatorTest.ROOT_ImageInVolumeWithRootFilesystem` and
`LinuxFilesystemIsolatorTest.ROOT_MultipleContainers` tests.

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


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

Branch: refs/heads/master
Commit: 2ec9aa3f4331806fb405cb06ecc0c7c2b0123de1
Parents: 6c54067
Author: Joseph Wu <jo...@mesosphere.io>
Authored: Fri Feb 19 21:50:22 2016 -0800
Committer: Jie Yu <yu...@gmail.com>
Committed: Fri Feb 19 21:50:22 2016 -0800

----------------------------------------------------------------------
 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/2ec9aa3f/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 d8c3c81..6a60962 100644
--- a/src/tests/containerizer/filesystem_isolator_tests.cpp
+++ b/src/tests/containerizer/filesystem_isolator_tests.cpp
@@ -1051,7 +1051,7 @@ TEST_F(LinuxFilesystemIsolatorTest, ROOT_ImageInVolumeWithRootFilesystem)
 
   // Wait for the launch to complete.
   // Need to wait for Rootfs copy.
-  AWAIT_READY_FOR(launch, Seconds(120));
+  AWAIT_READY_FOR(launch, Seconds(240));
 
   // Wait on the container.
   Future<containerizer::Termination> wait =
@@ -1135,7 +1135,7 @@ TEST_F(LinuxFilesystemIsolatorTest, ROOT_MultipleContainers)
 
   // Wait for the launch to complete.
   // Need to wait for Rootfs copy.
-  AWAIT_READY_FOR(launch1, Seconds(60));
+  AWAIT_READY_FOR(launch1, Seconds(120));
 
   // Now launch container 2 which will copy the host mount table with
   // container 1's work directory mount in it.