Skip to content

Commit 440c750

Browse files
committed
[test] Temporary disable tests
Signed-off-by: Violeta Georgieva <696661+violetagg@users.noreply.github.com>
1 parent 223c84c commit 440c750

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

reactor-netty-core/src/test/java/reactor/netty/tcp/TcpClientTests.java

+3
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@
6262
import org.junit.jupiter.api.AfterEach;
6363
import org.junit.jupiter.api.BeforeEach;
6464
import org.junit.jupiter.api.Test;
65+
import org.junit.jupiter.api.condition.DisabledOnOs;
66+
import org.junit.jupiter.api.condition.OS;
6567
import org.reactivestreams.Publisher;
6668
import reactor.core.publisher.Flux;
6769
import reactor.core.publisher.Mono;
@@ -853,6 +855,7 @@ private void doTestIssue600(boolean withLoop) {
853855
}
854856

855857
@Test
858+
@DisabledOnOs(OS.MAC)
856859
void testRetryOnDifferentAddress() throws Exception {
857860
DisposableServer server =
858861
TcpServer.create()

reactor-netty-http/src/test/java/reactor/netty/http/server/HttpServerTests.java

+4
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,8 @@
115115
import org.junit.jupiter.api.BeforeAll;
116116
import org.junit.jupiter.api.Test;
117117
import org.junit.jupiter.api.Timeout;
118+
import org.junit.jupiter.api.condition.DisabledOnOs;
119+
import org.junit.jupiter.api.condition.OS;
118120
import org.junit.jupiter.params.ParameterizedTest;
119121
import org.junit.jupiter.params.provider.EnumSource;
120122
import org.junit.jupiter.params.provider.MethodSource;
@@ -3713,6 +3715,7 @@ void testHttpServerCancelledOnClientClose() throws InterruptedException {
37133715

37143716
@ParameterizedTest
37153717
@MethodSource("h2CompatibleCombinations")
3718+
@DisabledOnOs(OS.MAC)
37163719
@SuppressWarnings("deprecation")
37173720
void testIssue2760_H2(HttpProtocol[] serverProtocols, HttpProtocol[] clientProtocols) throws Exception {
37183721
Http2SslContextSpec serverCtx = Http2SslContextSpec.forServer(ssc.toTempCertChainPem(), ssc.toTempPrivateKeyPem());
@@ -3726,6 +3729,7 @@ void testIssue2760_H2(HttpProtocol[] serverProtocols, HttpProtocol[] clientProto
37263729

37273730
@ParameterizedTest
37283731
@MethodSource("h2cCompatibleCombinations")
3732+
@DisabledOnOs(OS.MAC)
37293733
void testIssue2760_H2C(HttpProtocol[] serverProtocols, HttpProtocol[] clientProtocols) {
37303734
testIssue2760(server -> server.protocol(serverProtocols), client -> client.protocol(clientProtocols));
37313735
}

0 commit comments

Comments
 (0)