Ignore SocketShutdownOutputBySelfTest.testWriteAfterShutdownOutputNoWritabilityChange (#10970)

Motivation:

The testWriteAfterShutdownOutputNoWritabilityChange() failed a few times on the CI randomly. Let's skip it for now while we investigate and see if there is anything we can do to make the test less flaky on the CI.

Modifications:

Add @Ignore on the testWriteAfterShutdownOutputNoWritabilityChange method

Result:

Less flaky CI
This commit is contained in:
Norman Maurer 2021-01-28 07:27:06 +01:00
parent fb9412b0ad
commit a3d100a7e8

View File

@ -25,6 +25,7 @@ import io.netty.channel.ChannelOption;
import io.netty.channel.SimpleChannelInboundHandler; import io.netty.channel.SimpleChannelInboundHandler;
import io.netty.channel.WriteBufferWaterMark; import io.netty.channel.WriteBufferWaterMark;
import io.netty.channel.socket.SocketChannel; import io.netty.channel.socket.SocketChannel;
import org.junit.Ignore;
import org.junit.Test; import org.junit.Test;
import java.net.ServerSocket; import java.net.ServerSocket;
@ -129,6 +130,7 @@ public class SocketShutdownOutputBySelfTest extends AbstractClientSocketTest {
} }
} }
@Ignore
@Test(timeout = 30000) @Test(timeout = 30000)
public void testWriteAfterShutdownOutputNoWritabilityChange() throws Throwable { public void testWriteAfterShutdownOutputNoWritabilityChange() throws Throwable {
run(); run();