### 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.211 diff -u -r1.211 BatchCompilerTest.java --- src/org/eclipse/jdt/core/tests/compiler/regression/BatchCompilerTest.java 24 Sep 2010 06:30:50 -0000 1.211 +++ src/org/eclipse/jdt/core/tests/compiler/regression/BatchCompilerTest.java 25 Sep 2010 07:01:30 -0000 @@ -3854,7 +3854,12 @@ // the file system and a true test case would call for instrumented // code) // this test only works on appropriate file systems +// disabled for solaris because of bug 316827 public void test055(){ + String os= System.getProperty("os.name"); + if (os.startsWith("Solaris")) // https://bugs.eclipse.org/bugs/show_bug.cgi?id=316827 + return; + if (File.separatorChar == '/') { String tentativeOutputDirNameTail = File.separator + "out";