You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by jo...@apache.org on 2018/09/28 18:12:49 UTC

[mesos] branch master updated: Disabled flaky LongLivedDefaultExecutorRestart test.

This is an automated email from the ASF dual-hosted git repository.

josephwu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git


The following commit(s) were added to refs/heads/master by this push:
     new 698c149  Disabled flaky LongLivedDefaultExecutorRestart test.
698c149 is described below

commit 698c1498c20585089db9fca98c35bbab8da46c04
Author: Joseph Wu <jo...@apache.org>
AuthorDate: Fri Sep 28 11:09:19 2018 -0700

    Disabled flaky LongLivedDefaultExecutorRestart test.
    
    This flaky test is tracked here:
    https://issues.apache.org/jira/browse/MESOS-9217
---
 src/tests/gc_tests.cpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/tests/gc_tests.cpp b/src/tests/gc_tests.cpp
index 55cba06..4d94430 100644
--- a/src/tests/gc_tests.cpp
+++ b/src/tests/gc_tests.cpp
@@ -903,7 +903,8 @@ TEST_F(GarbageCollectorIntegrationTest, LongLivedDefaultExecutor)
 // when a task finishes, but the executor is still running. This version of
 // the test restarts the agent to ensure recovered tasks are also scheduled
 // for GC.
-TEST_F(GarbageCollectorIntegrationTest, LongLivedDefaultExecutorRestart)
+TEST_F(
+    GarbageCollectorIntegrationTest, DISABLED_LongLivedDefaultExecutorRestart)
 {
   Try<Owned<cluster::Master>> master = StartMaster();
   ASSERT_SOME(master);