changeset 6105:98fd6a425355

8006560: java/net/ipv6tests/B6521014.java fails intermittently Reviewed-by: khazra, wetmore
author chegar
date Sun, 20 Jan 2013 09:37:51 +0000
parents e0099d8fe88c
children fedc35c8b46b
files test/java/net/ipv6tests/B6521014.java
diffstat 1 files changed, 1 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/test/java/net/ipv6tests/B6521014.java	Sat Dec 29 11:00:15 2012 +0000
+++ b/test/java/net/ipv6tests/B6521014.java	Sun Jan 20 09:37:51 2013 +0000
@@ -95,14 +95,12 @@
         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) {