### Eclipse Workspace Patch 1.0 #P org.eclipse.jdt.core.tests.compiler Index: src/org/eclipse/jdt/core/tests/runtime/StandardVMLauncher.java =================================================================== RCS file: /cvsroot/eclipse/org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/runtime/StandardVMLauncher.java,v retrieving revision 1.14 diff -u -r1.14 StandardVMLauncher.java --- src/org/eclipse/jdt/core/tests/runtime/StandardVMLauncher.java 10 May 2006 18:07:26 -0000 1.14 +++ src/org/eclipse/jdt/core/tests/runtime/StandardVMLauncher.java 31 May 2006 18:32:06 -0000 @@ -125,12 +125,10 @@ ",server=y,suspend=n"); } - // boot classpath - commandLine.addElement("-Xbootclasspath:" + buildBootClassPath()); - - // regular classpath + // set the classpath commandLine.addElement("-classpath"); - commandLine.addElement(buildClassPath()); + String classpath = buildBootClassPath() + File.pathSeparator + buildClassPath(); + commandLine.addElement(classpath); // code snippet runner class if (this.evalPort != -1) {