Index: mojo/edk/system/message_pipe_unittest.cc |
diff --git a/mojo/edk/system/message_pipe_unittest.cc b/mojo/edk/system/message_pipe_unittest.cc |
index 63fd634384e59ec21b1752bc61f0bc0f0a01fb4b..78210424e947228ced41ae522f6317aa66528519 100644 |
--- a/mojo/edk/system/message_pipe_unittest.cc |
+++ b/mojo/edk/system/message_pipe_unittest.cc |
@@ -421,7 +421,8 @@ DEFINE_TEST_CLIENT_TEST_WITH_PIPE(DataPipeHandlePingPong, MessagePipeTest, h) { |
} |
// Test that sending a data pipe handle across processes doesn't leak resources. |
-TEST_F(MessagePipeTest, DataPipeConsumerHandlePingPong) { |
+// Currently times out on multiple platforms. crbug.com/585784 |
+TEST_F(MessagePipeTest, DISABLED_DataPipeConsumerHandlePingPong) { |
MojoHandle p, c; |
EXPECT_EQ(MOJO_RESULT_OK, MojoCreateDataPipe(nullptr, &p, &c)); |
MojoClose(p); |
@@ -435,7 +436,8 @@ TEST_F(MessagePipeTest, DataPipeConsumerHandlePingPong) { |
MojoClose(c); |
} |
-TEST_F(MessagePipeTest, DataPipeProducerHandlePingPong) { |
+// Currently times out on multiple platforms. crbug.com/585784 |
+TEST_F(MessagePipeTest, DISABLED_DataPipeProducerHandlePingPong) { |
MojoHandle p, c; |
EXPECT_EQ(MOJO_RESULT_OK, MojoCreateDataPipe(nullptr, &p, &c)); |
MojoClose(c); |