8268620: InfiniteLoopException test may fail on x86 platforms

Backport-of: 0b09129faefb945c2f2c35dab2731961216d054e
This commit is contained in:
Christoph Langer 2021-07-14 05:38:17 +00:00
parent 67273ae63c
commit e5db9a9405

@ -1,5 +1,5 @@
/*
* Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -40,6 +40,7 @@ public final class InfiniteLoopException {
frame.setLocationRelativeTo(null);
frame.setVisible(true);
test(frame);
frame.setVisible(false);
} finally {
frame.dispose();
}
@ -49,6 +50,7 @@ public final class InfiniteLoopException {
Runnable repaint = () -> {
while (frame.isDisplayable()) {
frame.repaint();
Thread.yield();
}
};
new Thread(repaint).start();