8194946: Regression automated Test 'javax/swing/JFileChooser/6738668/bug6738668.java' fails
Reviewed-by: aivanov
This commit is contained in:
parent
507dc41a53
commit
70251b064d
test/jdk
@ -718,7 +718,6 @@ javax/swing/SwingUtilities/TestBadBreak/TestBadBreak.java 8160720 generic-all
|
||||
javax/swing/text/DefaultCaret/HidingSelection/HidingSelectionTest.java 8194048 windows-all
|
||||
javax/swing/text/DefaultCaret/HidingSelection/MultiSelectionTest.java 8213562 linux-all
|
||||
javax/swing/JFileChooser/6798062/bug6798062.java 8146446 windows-all
|
||||
javax/swing/JFileChooser/6738668/bug6738668.java 8194946 generic-all
|
||||
javax/swing/JPopupMenu/4870644/bug4870644.java 8194130 macosx-all,linux-all
|
||||
javax/swing/PopupFactory/6276087/NonOpaquePopupMenuTest.java 8065099,8208565 macosx-all,linux-all
|
||||
javax/swing/dnd/8139050/NativeErrorsInTableDnD.java 8202765 macosx-all,linux-all
|
||||
|
@ -22,6 +22,7 @@
|
||||
*/
|
||||
|
||||
/* @test
|
||||
@key headful
|
||||
@bug 6738668 6962725
|
||||
@summary JFileChooser cannot be created under SecurityManager
|
||||
@author Pavel Porvatov
|
||||
@ -31,11 +32,20 @@
|
||||
import java.io.File;
|
||||
import javax.swing.JFileChooser;
|
||||
import javax.swing.UIManager;
|
||||
import javax.swing.UnsupportedLookAndFeelException;
|
||||
|
||||
public class bug6738668 {
|
||||
public static void main(String[] args) throws Exception {
|
||||
for (UIManager.LookAndFeelInfo lookAndFeelInfo : UIManager.getInstalledLookAndFeels()) {
|
||||
UIManager.setLookAndFeel(lookAndFeelInfo.getClassName());
|
||||
try {
|
||||
UIManager.setLookAndFeel(lookAndFeelInfo.getClassName());
|
||||
} catch (UnsupportedLookAndFeelException ignored) {
|
||||
System.out.println("Unsupported L&F: " + lookAndFeelInfo.getClassName());
|
||||
continue;
|
||||
} catch (ClassNotFoundException | InstantiationException
|
||||
| IllegalAccessException e) {
|
||||
throw new RuntimeException(e);
|
||||
}
|
||||
|
||||
String tmpdir = System.getProperty("java.io.tmpdir");
|
||||
System.out.println("tmp dir " + tmpdir);
|
||||
|
Loading…
x
Reference in New Issue
Block a user