提交 c037081d 编写于 作者: A alanb

7170203: TEST_BUG: test/java/nio/MappedByteBuffer/Truncate.java failing intermittently

Reviewed-by: chegar
上级 ed5e8c1c
......@@ -88,6 +88,11 @@ public class Truncate {
}
};
Thread t = new Thread(r);
t.setUncaughtExceptionHandler(new Thread.UncaughtExceptionHandler() {
public void uncaughtException(Thread t, Throwable e) {
e.printStackTrace();
}
});
t.start();
try { t.join(); } catch (InterruptedException ignore) { }
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册