提交 8fd0be5c 编写于 作者: R rupashka

6894504: javax/swing/JFileChooser/6741890/bug6741890.java fails w/ RuntimeException

Reviewed-by: malenkov
上级 1b7e29db
......@@ -29,6 +29,7 @@
*/
import sun.awt.shell.ShellFolder;
import sun.awt.OSInfo;
import java.io.File;
import java.lang.reflect.Field;
......@@ -43,6 +44,12 @@ public class bug6741890 {
private static final int COUNT = 100000;
public static void main(String[] args) throws Exception {
if (OSInfo.getOSType() != OSInfo.OSType.WINDOWS) {
System.out.println("The test is applicable only for Windows. Skipped.");
return;
}
String tmpDir = System.getProperty("java.io.tmpdir");
if (tmpDir.length() == 0) { //'java.io.tmpdir' isn't guaranteed to be defined
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册