From a3d100a7e8e901bf1eb7e0de3f03b6b7c9be100e Mon Sep 17 00:00:00 2001 From: Norman Maurer Date: Thu, 28 Jan 2021 07:27:06 +0100 Subject: [PATCH] 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 --- .../transport/socket/SocketShutdownOutputBySelfTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/testsuite/src/main/java/io/netty/testsuite/transport/socket/SocketShutdownOutputBySelfTest.java b/testsuite/src/main/java/io/netty/testsuite/transport/socket/SocketShutdownOutputBySelfTest.java index 4e896c63bc..a5f4c83f79 100644 --- a/testsuite/src/main/java/io/netty/testsuite/transport/socket/SocketShutdownOutputBySelfTest.java +++ b/testsuite/src/main/java/io/netty/testsuite/transport/socket/SocketShutdownOutputBySelfTest.java @@ -25,6 +25,7 @@ import io.netty.channel.ChannelOption; import io.netty.channel.SimpleChannelInboundHandler; import io.netty.channel.WriteBufferWaterMark; import io.netty.channel.socket.SocketChannel; +import org.junit.Ignore; import org.junit.Test; import java.net.ServerSocket; @@ -129,6 +130,7 @@ public class SocketShutdownOutputBySelfTest extends AbstractClientSocketTest { } } + @Ignore @Test(timeout = 30000) public void testWriteAfterShutdownOutputNoWritabilityChange() throws Throwable { run();