8006560: java/net/ipv6tests/B6521014.java fails intermittently

Reviewed-by: khazra, wetmore
This commit is contained in:
Chris Hegarty 2013-01-20 09:37:51 +00:00
parent 69757a1c92
commit 6b32c387f1

View File

@ -95,14 +95,12 @@ public class B6521014 {
Socket sock;
ServerSocket ssock;
int port;
int localport;
ssock = new ServerSocket(0);
ssock.setSoTimeout(100);
port = ssock.getLocalPort();
localport = port + 1;
sock = new Socket();
sock.bind(new InetSocketAddress(sin, localport));
sock.bind(new InetSocketAddress(sin, 0));
try {
sock.connect(new InetSocketAddress(sin, port), 100);
} catch (SocketTimeoutException e) {