提交 5884c537 编写于 作者: M mchung

6512493: TEST_BUG: unexpected LockInfo failure in LockedSynchronizers.java

Summary: Retry a few times to check thread status before reporting failure
Reviewed-by: swamyv
上级 777adf44
......@@ -66,6 +66,8 @@ public class LockingThread extends Thread {
throw new RuntimeException(e);
}
}
Utils.waitForBlockWaitingState(t1);
Utils.waitForBlockWaitingState(t2);
}
static long[] getThreadIds() {
return new long[] {t1.getId(), t2.getId()};
......
......@@ -83,11 +83,24 @@ public class MonitorDeadlock {
void waitUntilDeadlock() {
barr.await();
// sleep a little while to wait until threads are blocked.
try {
Thread.sleep(100);
} catch (InterruptedException e) {
// ignore
for (int i=0; i < 100; i++) {
// sleep a little while to wait until threads are blocked.
try {
Thread.sleep(100);
} catch (InterruptedException e) {
// ignore
}
boolean retry = false;
for (Thread t: dThreads) {
if (t.getState() == Thread.State.RUNNABLE) {
retry = true;
break;
}
}
if (!retry) {
break;
}
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册