25
25
* @test
26
26
* @bug 4361783
27
27
* @key intermittent
28
- * @summary Test to see if ICMP Port Unreachable on non-connected
29
- * DatagramSocket causes a SocketException "socket closed"
30
- * exception on Windows 2000.
28
+ * @summary Test to see if ICMP Port Unreachable on non-connected
29
+ * DatagramSocket causes a SocketException "socket closed"
30
+ * exception on Windows 2000.
31
+ * @run main/othervm PortUnreachable
31
32
*/
33
+
32
34
import java .net .BindException ;
33
35
import java .net .DatagramPacket ;
34
36
import java .net .DatagramSocket ;
@@ -56,6 +58,7 @@ public void serverSend() {
56
58
b = "Greetings from the server" .getBytes ();
57
59
packet = new DatagramPacket (b , b .length , addr , clientPort );
58
60
sock .send (packet );
61
+ Thread .sleep (500 ); // give time to the kernel to send packet
59
62
sock .close ();
60
63
} catch (Exception e ) {
61
64
e .printStackTrace ();
@@ -70,15 +73,15 @@ DatagramSocket recreateServerSocket (int serverPort) throws Exception {
70
73
serverPort );
71
74
// it's possible that this method intermittently fails, if some other
72
75
// process running on the machine grabs the port we want before us,
73
- // and doesn't release it before the 5 * 500 ms are elapsed...
76
+ // and doesn't release it before the 10 * 500 ms are elapsed...
74
77
while (serverSocket == null ) {
75
78
try {
76
79
serverSocket = new DatagramSocket (serverPort , InetAddress .getLocalHost ());
77
80
} catch (BindException bEx ) {
78
- if (retryCount ++ < 5 ) {
79
- sleeptime += sleepAtLeast (500 );
81
+ if (retryCount ++ < 10 ) {
82
+ sleeptime += sleepAtLeast (500 );
80
83
} else {
81
- System .out .println ("Give up after 5 retries and " + sleeptime (sleeptime ));
84
+ System .out .println ("Give up after 10 retries and " + sleeptime (sleeptime ));
82
85
System .out .println ("Has some other process grabbed port " + serverPort + "?" );
83
86
throw bEx ;
84
87
}
@@ -154,6 +157,7 @@ void execute () throws Exception{
154
157
clientSock .send (packet );
155
158
156
159
serverSend ();
160
+
157
161
// try to receive
158
162
b = new byte [25 ];
159
163
packet = new DatagramPacket (b , b .length , addr , serverPort );
@@ -166,8 +170,20 @@ void execute () throws Exception{
166
170
}
167
171
168
172
public static void main (String [] args ) throws Exception {
169
- PortUnreachable test = new PortUnreachable ();
170
- test . execute ();
171
- }
173
+ // A BindException might be thrown intermittently. In that case retry
174
+ // 3 times before propagating the exception to finish execution.
175
+ int catchCount = 0 ;
172
176
177
+ while (true ) {
178
+ try {
179
+ PortUnreachable test = new PortUnreachable ();
180
+ test .execute ();
181
+ return ;
182
+ } catch (BindException bEx ) {
183
+ if (++catchCount > 3 ) {
184
+ throw bEx ;
185
+ }
186
+ }
187
+ }
188
+ }
173
189
}
0 commit comments