This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/tomcat.git
commit 4c456b17c49ef9bdeef49af96f273e07b9c5db00 Author: Mark Thomas <ma...@apache.org> AuthorDate: Wed Apr 8 15:47:47 2020 +0100 BZ 64311 Add debug logging to aid investigation of test failures --- test/org/apache/tomcat/jni/TestSocketServerAnyLocalAddress.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/org/apache/tomcat/jni/TestSocketServerAnyLocalAddress.java b/test/org/apache/tomcat/jni/TestSocketServerAnyLocalAddress.java index b13b116..e1f78d6 100644 --- a/test/org/apache/tomcat/jni/TestSocketServerAnyLocalAddress.java +++ b/test/org/apache/tomcat/jni/TestSocketServerAnyLocalAddress.java @@ -124,6 +124,7 @@ public class TestSocketServerAnyLocalAddress extends AbstractJniTest { try { InetSocketAddress connectAddress = getConnectAddress(serverSocket); + System.out.println("Client attempting to connect to [" + connectAddress + "]"); java.net.Socket sock = new java.net.Socket(); sock.connect(connectAddress, TIMEOUT_MICROSECONDS); sock.setSoTimeout(TIMEOUT_MICROSECONDS); @@ -165,6 +166,7 @@ public class TestSocketServerAnyLocalAddress extends AbstractJniTest { } else { localAddress = new InetSocketAddress("0.0.0.0", addr.port); } + System.out.println("Server is listening at [" + localAddress + "]"); // Need a local address of the same type (IPv4 or IPV6) as the // configured bind address since the connector may be configured --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org