8048005: Add test timing information to JMXStartStopTest

Reviewed-by: egahlin, dfuchs
This commit is contained in:
Jaroslav Bachorik 2014-06-24 19:59:26 +02:00
parent 8bca223cbd
commit cc7e85e940

View File

@ -290,11 +290,14 @@ public class JMXStartStopTest {
public static void main(String args[]) throws Exception {
for (Method m : JMXStartStopTest.class.getDeclaredMethods()) {
if (m.getName().startsWith("test_")) {
long t1 = System.currentTimeMillis();
try {
m.invoke(null);
System.out.println("=== PASSED\n");
System.out.println("=== PASSED");
} catch (Throwable e) {
failures.add(new Failure(e, m.getName() + " failed"));
} finally {
System.out.println("(took " + (System.currentTimeMillis() - t1) + "ms)\n");
}
}
}