Skip to content

Commit 70251b0

Browse files
committedApr 13, 2022
8194946: Regression automated Test 'javax/swing/JFileChooser/6738668/bug6738668.java' fails
Reviewed-by: aivanov
1 parent 507dc41 commit 70251b0

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed
 

‎test/jdk/ProblemList.txt

-1
Original file line numberDiff line numberDiff line change
@@ -718,7 +718,6 @@ javax/swing/SwingUtilities/TestBadBreak/TestBadBreak.java 8160720 generic-all
718718
javax/swing/text/DefaultCaret/HidingSelection/HidingSelectionTest.java 8194048 windows-all
719719
javax/swing/text/DefaultCaret/HidingSelection/MultiSelectionTest.java 8213562 linux-all
720720
javax/swing/JFileChooser/6798062/bug6798062.java 8146446 windows-all
721-
javax/swing/JFileChooser/6738668/bug6738668.java 8194946 generic-all
722721
javax/swing/JPopupMenu/4870644/bug4870644.java 8194130 macosx-all,linux-all
723722
javax/swing/PopupFactory/6276087/NonOpaquePopupMenuTest.java 8065099,8208565 macosx-all,linux-all
724723
javax/swing/dnd/8139050/NativeErrorsInTableDnD.java 8202765 macosx-all,linux-all

‎test/jdk/javax/swing/JFileChooser/6738668/bug6738668.java

+11-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
*/
2323

2424
/* @test
25+
@key headful
2526
@bug 6738668 6962725
2627
@summary JFileChooser cannot be created under SecurityManager
2728
@author Pavel Porvatov
@@ -31,11 +32,20 @@
3132
import java.io.File;
3233
import javax.swing.JFileChooser;
3334
import javax.swing.UIManager;
35+
import javax.swing.UnsupportedLookAndFeelException;
3436

3537
public class bug6738668 {
3638
public static void main(String[] args) throws Exception {
3739
for (UIManager.LookAndFeelInfo lookAndFeelInfo : UIManager.getInstalledLookAndFeels()) {
38-
UIManager.setLookAndFeel(lookAndFeelInfo.getClassName());
40+
try {
41+
UIManager.setLookAndFeel(lookAndFeelInfo.getClassName());
42+
} catch (UnsupportedLookAndFeelException ignored) {
43+
System.out.println("Unsupported L&F: " + lookAndFeelInfo.getClassName());
44+
continue;
45+
} catch (ClassNotFoundException | InstantiationException
46+
| IllegalAccessException e) {
47+
throw new RuntimeException(e);
48+
}
3949

4050
String tmpdir = System.getProperty("java.io.tmpdir");
4151
System.out.println("tmp dir " + tmpdir);

0 commit comments

Comments
 (0)
Please sign in to comment.