### Eclipse Workspace Patch 1.0 #P org.eclipse.jdt.core.tests.compiler Index: src/org/eclipse/jdt/core/tests/compiler/regression/BatchCompilerTest.java =================================================================== RCS file: /cvsroot/eclipse/org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/compiler/regression/BatchCompilerTest.java,v retrieving revision 1.209 diff -u -r1.209 BatchCompilerTest.java --- src/org/eclipse/jdt/core/tests/compiler/regression/BatchCompilerTest.java 19 Aug 2010 06:26:07 -0000 1.209 +++ src/org/eclipse/jdt/core/tests/compiler/regression/BatchCompilerTest.java 25 Aug 2010 11:07:21 -0000 @@ -11413,6 +11413,10 @@ } // https://bugs.eclipse.org/bugs/show_bug.cgi?id=321115 public void test0307(){ + String os= System.getProperty("os.name"); + if (!os.startsWith("Windows")) // https://bugs.eclipse.org/bugs/show_bug.cgi?id=323558 + return; + final String javaClassspath = System.getProperty("java.class.path"); final String javaUserDir = System.getProperty("user.dir"); try { @@ -11462,6 +11466,10 @@ } // https://bugs.eclipse.org/bugs/show_bug.cgi?id=321115 public void test0307a(){ + String os= System.getProperty("os.name"); + if (!os.startsWith("Windows")) // https://bugs.eclipse.org/bugs/show_bug.cgi?id=323558 + return; + final String javaClassspath = System.getProperty("java.class.path"); final String javaUserDir = System.getProperty("user.dir"); try { @@ -11523,6 +11531,10 @@ } // https://bugs.eclipse.org/bugs/show_bug.cgi?id=321115 public void test0307b(){ + String os= System.getProperty("os.name"); + if (!os.startsWith("Windows")) // https://bugs.eclipse.org/bugs/show_bug.cgi?id=323558 + return; + final String javaClassspath = System.getProperty("java.class.path"); final String javaUserDir = System.getProperty("user.dir"); try { @@ -11584,6 +11596,10 @@ } // https://bugs.eclipse.org/bugs/show_bug.cgi?id=321115 public void test0307c(){ + String os= System.getProperty("os.name"); + if (!os.startsWith("Windows")) // https://bugs.eclipse.org/bugs/show_bug.cgi?id=323558 + return; + final String javaClassspath = System.getProperty("java.class.path"); final String javaUserDir = System.getProperty("user.dir"); try { @@ -11645,6 +11661,10 @@ } // https://bugs.eclipse.org/bugs/show_bug.cgi?id=321115 public void test0307d(){ + String os= System.getProperty("os.name"); + if (!os.startsWith("Windows")) // https://bugs.eclipse.org/bugs/show_bug.cgi?id=323558 + return; + final String javaClassspath = System.getProperty("java.class.path"); final String javaUserDir = System.getProperty("user.dir"); try { @@ -11706,6 +11726,10 @@ } // https://bugs.eclipse.org/bugs/show_bug.cgi?id=321115 public void test0307e(){ + String os= System.getProperty("os.name"); + if (!os.startsWith("Windows")) // https://bugs.eclipse.org/bugs/show_bug.cgi?id=323558 + return; + final String javaClassspath = System.getProperty("java.class.path"); final String javaUserDir = System.getProperty("user.dir"); try {