Skip to content

Commit 4071546

Browse files
committedMay 4, 2020
8221902: PIT: javax/swing/JRadioButton/FocusTraversal/FocusTraversal.java fails on ubuntu
Reviewed-by: serb
1 parent 2731d62 commit 4071546

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed
 

‎test/jdk/ProblemList.txt

-1
Original file line numberDiff line numberDiff line change
@@ -851,7 +851,6 @@ javax/swing/JEditorPane/6917744/bug6917744.java 8213124 macosx-all
851851
javax/swing/JTable/6263446/bug6263446.java 8169959 macosx-all
852852
javax/swing/JTree/6263446/bug6263446.java 8213125 macosx-all
853853
javax/swing/JTree/8003400/Test8003400.java 8197560 macosx-all,linux-all
854-
javax/swing/JRadioButton/FocusTraversal/FocusTraversal.java 8221902 linux-all,macosx-all
855854
javax/swing/ToolTipManager/Test6256140.java 8233560 macosx-all
856855
javax/swing/text/View/8014863/bug8014863.java 8233561 macosx-all
857856
javax/swing/text/StyledEditorKit/4506788/bug4506788.java 8233561 macosx-all

‎test/jdk/javax/swing/JRadioButton/FocusTraversal/FocusTraversal.java

+3
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,8 @@ public void run() {
134134
private static void runTestCase() throws Exception {
135135
focusOn(a);
136136

137+
robot.waitForIdle();
138+
robot.delay(500);
137139
robot.keyPress(KeyEvent.VK_ENTER);
138140
robot.keyRelease(KeyEvent.VK_ENTER);
139141
robot.waitForIdle();
@@ -189,6 +191,7 @@ private static boolean tryLookAndFeel(String lookAndFeelString)
189191
| IllegalAccessException e) {
190192
return false;
191193
}
194+
System.out.println("Testing lookAndFeel " + lookAndFeelString);
192195
return true;
193196
}
194197

0 commit comments

Comments
 (0)
Please sign in to comment.