# HG changeset patch # User rupashka # Date 1256900748 -10800 # Node ID 19adfe928d6cd0a54317bc7e3f8cb278c038ec28 # Parent f4742294ef295465367e0ab5f26ba5d016d631b6 6894504: javax/swing/JFileChooser/6741890/bug6741890.java fails w/ RuntimeException Reviewed-by: malenkov diff -r f4742294ef29 -r 19adfe928d6c jdk/test/javax/swing/JFileChooser/6741890/bug6741890.java --- a/jdk/test/javax/swing/JFileChooser/6741890/bug6741890.java Thu Oct 22 18:42:18 2009 +0400 +++ b/jdk/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