From fa7dfb510970c3fa7b3115c268edae37168161a2 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Fri, 26 Feb 2016 18:23:02 +0000 Subject: [PATCH] Ignore tests that are broken by UNDERTOW-639 --- .../websocket/undertow/SampleWebSocketsApplicationTests.java | 2 ++ .../echo/CustomContainerWebSocketsApplicationTests.java | 2 ++ 2 files changed, 4 insertions(+) diff --git a/spring-boot-samples/spring-boot-sample-websocket-undertow/src/test/java/samples/websocket/undertow/SampleWebSocketsApplicationTests.java b/spring-boot-samples/spring-boot-sample-websocket-undertow/src/test/java/samples/websocket/undertow/SampleWebSocketsApplicationTests.java index eadaa1d766..d3b97ff60c 100644 --- a/spring-boot-samples/spring-boot-sample-websocket-undertow/src/test/java/samples/websocket/undertow/SampleWebSocketsApplicationTests.java +++ b/spring-boot-samples/spring-boot-sample-websocket-undertow/src/test/java/samples/websocket/undertow/SampleWebSocketsApplicationTests.java @@ -22,6 +22,7 @@ import java.util.concurrent.atomic.AtomicReference; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; +import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; import samples.websocket.undertow.client.GreetingService; @@ -56,6 +57,7 @@ public class SampleWebSocketsApplicationTests { private int port = 1234; @Test + @Ignore("UNDERTOW-639") public void echoEndpoint() throws Exception { ConfigurableApplicationContext context = new SpringApplicationBuilder( ClientConfiguration.class, PropertyPlaceholderAutoConfiguration.class) diff --git a/spring-boot-samples/spring-boot-sample-websocket-undertow/src/test/java/samples/websocket/undertow/echo/CustomContainerWebSocketsApplicationTests.java b/spring-boot-samples/spring-boot-sample-websocket-undertow/src/test/java/samples/websocket/undertow/echo/CustomContainerWebSocketsApplicationTests.java index e6c06443b2..f3e51c55d7 100644 --- a/spring-boot-samples/spring-boot-sample-websocket-undertow/src/test/java/samples/websocket/undertow/echo/CustomContainerWebSocketsApplicationTests.java +++ b/spring-boot-samples/spring-boot-sample-websocket-undertow/src/test/java/samples/websocket/undertow/echo/CustomContainerWebSocketsApplicationTests.java @@ -22,6 +22,7 @@ import java.util.concurrent.atomic.AtomicReference; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; +import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; import samples.websocket.undertow.SampleUndertowWebSocketsApplication; @@ -62,6 +63,7 @@ public class CustomContainerWebSocketsApplicationTests { private static int PORT = SocketUtils.findAvailableTcpPort(); @Test + @Ignore("UNDERTOW-639") public void echoEndpoint() throws Exception { ConfigurableApplicationContext context = new SpringApplicationBuilder( ClientConfiguration.class, PropertyPlaceholderAutoConfiguration.class)