From 1c16aa8993ecaa5b60d9000a7f5a6891dccce69d Mon Sep 17 00:00:00 2001 From: Joakim Erdfelt Date: Mon, 2 Aug 2021 07:31:09 -0700 Subject: [PATCH] Issue #5684 - Disable ConcurrentStreamCreationTest + Not possible to create all of these streams. Signed-off-by: Joakim Erdfelt --- .../jetty/http2/client/ConcurrentStreamCreationTest.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/jetty-http2/http2-client/src/test/java/org/eclipse/jetty/http2/client/ConcurrentStreamCreationTest.java b/jetty-http2/http2-client/src/test/java/org/eclipse/jetty/http2/client/ConcurrentStreamCreationTest.java index 854bc70dc5f..d7a15bf0065 100644 --- a/jetty-http2/http2-client/src/test/java/org/eclipse/jetty/http2/client/ConcurrentStreamCreationTest.java +++ b/jetty-http2/http2-client/src/test/java/org/eclipse/jetty/http2/client/ConcurrentStreamCreationTest.java @@ -34,9 +34,12 @@ import org.eclipse.jetty.http2.frames.HeadersFrame; import org.eclipse.jetty.util.Callback; import org.eclipse.jetty.util.Promise; import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.condition.DisabledOnOs; +import org.junit.jupiter.api.condition.OS; import static org.junit.jupiter.api.Assertions.assertTrue; +@DisabledOnOs(value = OS.WINDOWS, disabledReason = "Unable to create all of the streams") public class ConcurrentStreamCreationTest extends AbstractTest { @Test