You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by vi...@apache.org on 2014/06/24 09:18:48 UTC

git commit: Properly disable health check tests.

Repository: mesos
Updated Branches:
  refs/heads/master ee23a2ffb -> 6c26c79af


Properly disable health check tests.


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

Branch: refs/heads/master
Commit: 6c26c79afd2d0fc790fddc6584da6f70a6434e17
Parents: ee23a2f
Author: Vinod Kone <vi...@gmail.com>
Authored: Tue Jun 24 00:12:36 2014 -0700
Committer: Vinod Kone <vi...@gmail.com>
Committed: Tue Jun 24 00:12:36 2014 -0700

----------------------------------------------------------------------
 src/tests/health_check_tests.cpp | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/6c26c79a/src/tests/health_check_tests.cpp
----------------------------------------------------------------------
diff --git a/src/tests/health_check_tests.cpp b/src/tests/health_check_tests.cpp
index 907c82a..44711fd 100644
--- a/src/tests/health_check_tests.cpp
+++ b/src/tests/health_check_tests.cpp
@@ -112,7 +112,7 @@ public:
 
 
 // Testing a healthy task reporting one healthy status to scheduler.
-TEST_F(HealthCheckTest, HealthyTask)
+TEST_F(DISABLED_HealthCheckTest, HealthyTask)
 {
   Try<PID<Master> > master = StartMaster();
   ASSERT_SOME(master);
@@ -170,7 +170,7 @@ TEST_F(HealthCheckTest, HealthyTask)
 
 
 // Testing killing task after number of consecutive failures.
-TEST_F(HealthCheckTest, ConsecutiveFailures)
+TEST_F(DISABLED_HealthCheckTest, ConsecutiveFailures)
 {
   Try<PID<Master> > master = StartMaster();
   ASSERT_SOME(master);
@@ -254,7 +254,7 @@ TEST_F(HealthCheckTest, ConsecutiveFailures)
 
 
 // Testing command using environment variable.
-TEST_F(HealthCheckTest, EnvironmentSetup)
+TEST_F(DISABLED_HealthCheckTest, EnvironmentSetup)
 {
   Try<PID<Master> > master = StartMaster();
   ASSERT_SOME(master);
@@ -317,7 +317,7 @@ TEST_F(HealthCheckTest, EnvironmentSetup)
 
 
 // Testing grace period that ignores all failed task failures.
-TEST_F(HealthCheckTest, GracePeriod)
+TEST_F(DISABLED_HealthCheckTest, GracePeriod)
 {
   Try<PID<Master> > master = StartMaster();
   ASSERT_SOME(master);