jdk/test/sun/security/krb5/auto/TcpTimeout.java
changeset 12842 f6f9cb8f6b97
parent 11357 0ef20e50a018
child 13016 8e43ddef9617
--- a/jdk/test/sun/security/krb5/auto/TcpTimeout.java	Mon May 21 19:28:41 2012 +0200
+++ b/jdk/test/sun/security/krb5/auto/TcpTimeout.java	Wed May 23 15:51:10 2012 +0800
@@ -24,6 +24,7 @@
 /*
  * @test
  * @bug 6952519
+ * @compile -XDignore.symbol.file TcpTimeout.java
  * @run main/othervm TcpTimeout
  * @summary kdc_timeout is not being honoured when using TCP
  */
@@ -73,9 +74,7 @@
         // 5 sec on p1, 5 sec on p1, fail
         // 5 sec on p2, 5 sec on p2, fail
         // p3 ok, p3 ok again for preauth.
-        // The total time should be 20sec + 2x. x is processing time for AS-REQ.
         int count = 6;
-        long start = System.currentTimeMillis();
 
         ByteArrayOutputStream bo = new ByteArrayOutputStream();
         PrintStream oldout = System.out;
@@ -93,10 +92,5 @@
         if (count != 0) {
             throw new Exception("Retry count is " + count + " less");
         }
-
-        long end = System.currentTimeMillis();
-        if ((end - start)/1000L < 20) {
-            throw new Exception("Too fast? " + (end - start)/1000L);
-        }
     }
 }