提交 59f5df59 编写于 作者: P prappo

8049884: Reduce possible timing noise in com/sun/jndi/ldap/LdapTimeoutTest.java

Reviewed-by: vinnie
上级 2f57e38d
...@@ -23,6 +23,7 @@ ...@@ -23,6 +23,7 @@
/** /**
* @test * @test
* @run main/othervm LdapTimeoutTest
* @bug 7094377 8000487 6176036 7056489 * @bug 7094377 8000487 6176036 7056489
* @summary Timeout tests for ldap * @summary Timeout tests for ldap
*/ */
...@@ -147,7 +148,7 @@ public class LdapTimeoutTest { ...@@ -147,7 +148,7 @@ public class LdapTimeoutTest {
void deadServerNoTimeout(Hashtable env) { void deadServerNoTimeout(Hashtable env) {
InitialContext ctx = null; InitialContext ctx = null;
ScheduledFuture killer = killSwitch(30_000); ScheduledFuture killer = killSwitch(30_000);
long start = System.nanoTime(); long start = System.currentTimeMillis();
try { try {
ctx = new InitialDirContext(env); ctx = new InitialDirContext(env);
SearchControls scl = new SearchControls(); SearchControls scl = new SearchControls();
...@@ -157,13 +158,11 @@ public class LdapTimeoutTest { ...@@ -157,13 +158,11 @@ public class LdapTimeoutTest {
// shouldn't reach here // shouldn't reach here
fail(); fail();
} catch (NamingException e) { } catch (NamingException e) {
long end = System.nanoTime(); long elapsed = System.currentTimeMillis() - start;
long elapsed = NANOSECONDS.toMillis(end - start);
if (elapsed < Connection.DEFAULT_READ_TIMEOUT_MILLIS) { if (elapsed < Connection.DEFAULT_READ_TIMEOUT_MILLIS) {
System.err.printf( System.err.printf("fail: timeout should be at least %s ms, " +
"fail: timeout should be at least %s ms, actual time is %s ms", "actual time is %s ms%n",
Connection.DEFAULT_READ_TIMEOUT_MILLIS, Connection.DEFAULT_READ_TIMEOUT_MILLIS, elapsed);
elapsed);
e.printStackTrace(); e.printStackTrace();
fail(); fail();
} else { } else {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册