mirror of
https://github.com/openjdk/jdk.git
synced 2026-02-09 09:58:43 +00:00
8268620: InfiniteLoopException test may fail on x86 platforms
Reviewed-by: prr, trebari, azvegint
This commit is contained in:
parent
d384093289
commit
0b09129fae
@ -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();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user