Skip to content

Commit 1b71621

Browse files
committedApr 20, 2022
8042381: Test javax/swing/JRootPane/4670486/bug4670486.java fails with Action has not been received
Reviewed-by: azvegint, kizune
1 parent 0f81d8f commit 1b71621

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed
 

‎test/jdk/ProblemList.txt

-1
Original file line numberDiff line numberDiff line change
@@ -719,7 +719,6 @@ javax/swing/PopupFactory/6276087/NonOpaquePopupMenuTest.java 8065099,8208565 mac
719719
javax/swing/dnd/8139050/NativeErrorsInTableDnD.java 8202765 macosx-all,linux-all
720720
javax/swing/Popup/TaskbarPositionTest.java 8065097 macosx-all,linux-all
721721
javax/swing/JEditorPane/6917744/bug6917744.java 8213124 macosx-all
722-
javax/swing/JRootPane/4670486/bug4670486.java 8042381 macosx-all
723722
javax/swing/JMenuItem/ActionListenerCalledTwice/ActionListenerCalledTwiceTest.java 8273573 macosx-all
724723

725724
# Several tests which fail on some hidpi systems/macosx12-aarch64 system

‎test/jdk/javax/swing/JRootPane/4670486/bug4670486.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ public static void checkAction() {
104104
public static void main(String[] args) throws Throwable {
105105
try {
106106
Robot robot = new Robot();
107-
robot.setAutoDelay(250);
107+
robot.setAutoDelay(100);
108108

109109
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
110110

@@ -116,12 +116,14 @@ public void run() {
116116
frame.setContentPane(createPanel(frame));
117117
frame.setJMenuBar(createMenuBar());
118118
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
119+
frame.setLocationRelativeTo(null);
119120
frame.pack();
120121
frame.setVisible(true);
121122
}
122123
});
123124

124125
robot.waitForIdle();
126+
robot.delay(1000);
125127

126128
// Change the default button to
127129
// force a call to BasicRootPaneUI.updateDefaultButtonBindings()

0 commit comments

Comments
 (0)
Please sign in to comment.