Skip to content

Commit

Permalink
Disable IPCChannelMojoTest.SendFailAfterClose on Android
Browse files Browse the repository at this point in the history
BUG=593790
TBR=sammc@chromium.org,amistry@chromium.org
NOTRY=true

Review URL: https://codereview.chromium.org/1784843003

Cr-Commit-Position: refs/heads/master@{#380433}
  • Loading branch information
alexmos authored and Commit bot committed Mar 10, 2016
1 parent 2782f0d commit 25b687c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion ipc/mojo/ipc_channel_mojo_unittest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,13 @@ DEFINE_IPC_CHANNEL_MOJO_TEST_CLIENT(ParamTraitInvalidMessagePipeClient,
RunTest(false);
}

TEST_F(IPCChannelMojoTest, SendFailAfterClose) {
// Times out on Android. crbug.com/593790
#if defined(OS_ANDROID)
#define MAYBE_SendFailAfterClose DISABLED_SendFailAfterClose
#else
#define MAYBE_SendFailAfterClose SendFailAfterClose
#endif
TEST_F(IPCChannelMojoTest, MAYBE_SendFailAfterClose) {
InitWithMojo("IPCChannelMojoTestSendOkClient");

ListenerThatExpectsOK listener;
Expand Down

0 comments on commit 25b687c

Please sign in to comment.