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
This commit is contained in:
parent
cb7ab1f6a4
commit
c4630c0328
@ -27,6 +27,7 @@ import io.netty.test.udt.util.EchoMessageHandler;
|
||||
import io.netty.test.udt.util.UnitHelp;
|
||||
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;
|
||||
|
Loading…
Reference in New Issue
Block a user