OpenJDK / jdk8u / jdk8u / jdk
changeset 1907:9357ffc36682
6894504: javax/swing/JFileChooser/6741890/bug6741890.java fails w/ RuntimeException
Reviewed-by: malenkov
author | rupashka |
---|---|
date | Fri, 30 Oct 2009 14:05:48 +0300 |
parents | 65da4a7fbf7f |
children | 9566c95d4022 |
files | test/javax/swing/JFileChooser/6741890/bug6741890.java |
diffstat | 1 files changed, 7 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/test/javax/swing/JFileChooser/6741890/bug6741890.java Thu Oct 22 18:42:18 2009 +0400 +++ b/test/javax/swing/JFileChooser/6741890/bug6741890.java Fri Oct 30 14:05:48 2009 +0300 @@ -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 @@ 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