-
Backport
-
Resolution: Fixed
-
P3
-
5.0u16-rev
-
b01
-
Fix failed
regression test suite
test: j2se/java/nio/channels/SocketChannel/AdaptSocket.java
Failed. Execution failed: `main' threw exception: java.net.ConnectException: Connection timed out
It get's VERY_REMOTE_HOST = TestUtil.FAR_HOST from j2se/java/nio/channels/TestUtil.java
where FAR_HOST = "theclub.ireland.sun.com"
It fails during sc.connect
hn=theclub.ireland.sun.com
...
InetSocketAddress isa
= new InetSocketAddress(InetAddress.getByName(hn), ECHO_PORT);
SocketChannel sc = SocketChannel.open();
sc.connect(isa);
...
ping theclub.ireland.sun.com
PING theclub.ireland.sun.com (129.156.232.32) 56(84) bytes of data.
--- theclub.ireland.sun.com ping statistics ---
150 packets transmitted, 0 received, 100% packet loss, time 149076ms
I think with theclub.ireland.sun.com should be done smth or change FAR_HOST in TestUtil.java
test: j2se/java/nio/channels/SocketChannel/AdaptSocket.java
Failed. Execution failed: `main' threw exception: java.net.ConnectException: Connection timed out
It get's VERY_REMOTE_HOST = TestUtil.FAR_HOST from j2se/java/nio/channels/TestUtil.java
where FAR_HOST = "theclub.ireland.sun.com"
It fails during sc.connect
hn=theclub.ireland.sun.com
...
InetSocketAddress isa
= new InetSocketAddress(InetAddress.getByName(hn), ECHO_PORT);
SocketChannel sc = SocketChannel.open();
sc.connect(isa);
...
ping theclub.ireland.sun.com
PING theclub.ireland.sun.com (129.156.232.32) 56(84) bytes of data.
--- theclub.ireland.sun.com ping statistics ---
150 packets transmitted, 0 received, 100% packet loss, time 149076ms
I think with theclub.ireland.sun.com should be done smth or change FAR_HOST in TestUtil.java
- backport of
-
JDK-6734271 Test has timeout while connecting to theclub.ireland.sun.com
- Resolved