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
ec80b1e50f
commit
5185a9850f
@ -28,6 +28,7 @@ import io.netty.test.udt.util.UnitHelp;
|
|||||||
import io.netty.util.concurrent.DefaultExecutorServiceFactory;
|
import io.netty.util.concurrent.DefaultExecutorServiceFactory;
|
||||||
import io.netty.util.internal.logging.InternalLogger;
|
import io.netty.util.internal.logging.InternalLogger;
|
||||||
import io.netty.util.internal.logging.InternalLoggerFactory;
|
import io.netty.util.internal.logging.InternalLoggerFactory;
|
||||||
|
import org.junit.Ignore;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
import java.net.InetSocketAddress;
|
import java.net.InetSocketAddress;
|
||||||
@ -49,8 +50,12 @@ public class NioUdtMessageRendezvousChannelTest extends AbstractUdtTest {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* verify basic echo message rendezvous
|
* 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)
|
@Test(timeout = 10 * 1000)
|
||||||
|
@Ignore
|
||||||
public void basicEcho() throws Exception {
|
public void basicEcho() throws Exception {
|
||||||
|
|
||||||
final int messageSize = 64 * 1024;
|
final int messageSize = 64 * 1024;
|
||||||
|
Loading…
Reference in New Issue
Block a user