From 5185a9850ff971fdcd9ea377b7431e688275cf74 Mon Sep 17 00:00:00 2001 From: Trustin Lee Date: Fri, 9 Jan 2015 17:57:42 +0900 Subject: [PATCH] Disable NioUdtMessageRendezvousChannelTest.basicEcho() Motivation: NioUdtMessageRendezvoudChannelTest.basicEcho() is flakey on Linux and failing on Windows. Modifications: Disable the problematic test until it's fixed. Result: Less annoyance --- .../test/udt/nio/NioUdtMessageRendezvousChannelTest.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/transport-udt/src/test/java/io/netty/test/udt/nio/NioUdtMessageRendezvousChannelTest.java b/transport-udt/src/test/java/io/netty/test/udt/nio/NioUdtMessageRendezvousChannelTest.java index 72ae59ebab..dcdadecbc5 100644 --- a/transport-udt/src/test/java/io/netty/test/udt/nio/NioUdtMessageRendezvousChannelTest.java +++ b/transport-udt/src/test/java/io/netty/test/udt/nio/NioUdtMessageRendezvousChannelTest.java @@ -28,6 +28,7 @@ import io.netty.test.udt.util.UnitHelp; import io.netty.util.concurrent.DefaultExecutorServiceFactory; import io.netty.util.internal.logging.InternalLogger; import io.netty.util.internal.logging.InternalLoggerFactory; +import org.junit.Ignore; import org.junit.Test; import java.net.InetSocketAddress; @@ -49,8 +50,12 @@ public class NioUdtMessageRendezvousChannelTest extends AbstractUdtTest { /** * verify basic echo message rendezvous + * + * FIXME: Re-enable after making it pass on Windows without unncessary tight loop. + * https://github.com/netty/netty/issues/2853 */ @Test(timeout = 10 * 1000) + @Ignore public void basicEcho() throws Exception { final int messageSize = 64 * 1024;