Skip to content

Commit

Permalink
Disabled pstree, killtree and slave recovery timeout tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
Vinod Kone committed Oct 9, 2013
1 parent 3d958c3 commit 13b3013
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
8 changes: 6 additions & 2 deletions 3rdparty/libprocess/3rdparty/stout/tests/os_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,9 @@ void dosetsid(void)
}


TEST_F(OsTest, killtree)
// Disabled in 0.14.0 due to MESOS-641. Will be re-enabled
// after fixes in 0.14.1.
TEST_F(OsTest, DISABLED_killtree)
{
Try<ProcessTree> tree =
Fork(dosetsid, // Child.
Expand Down Expand Up @@ -490,7 +492,9 @@ TEST_F(OsTest, killtree)
}


TEST_F(OsTest, pstree)
// Disabled in 0.14.0 due to MESOS-641. Will be re-enabled
// after fixes in 0.14.1.
TEST_F(OsTest, DISABLED_pstree)
{
Try<ProcessTree> tree = os::pstree(getpid());

Expand Down
3 changes: 2 additions & 1 deletion src/tests/slave_recovery_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,8 @@ TYPED_TEST(SlaveRecoveryTest, RecoverTerminatedExecutor)
// is down, because the recovery timeout elapses.
// When the slave comes back up with recovery=reconnect, make
// sure the task is properly transitioned to FAILED.
TYPED_TEST(SlaveRecoveryTest, RecoveryTimeout)
// Disabled in 0.14.0 due to MESOS-685.
TYPED_TEST(SlaveRecoveryTest, DISABLED_RecoveryTimeout)
{
Try<PID<Master> > master = this->StartMaster();
ASSERT_SOME(master);
Expand Down

0 comments on commit 13b3013

Please sign in to comment.