View | Details | Raw Unified | Return to bug 144742 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/jdt/core/tests/runtime/StandardVMLauncher.java (-5 / +3 lines)
Lines 125-136 Link Here
125
			",server=y,suspend=n");
125
			",server=y,suspend=n");
126
	}
126
	}
127
127
128
	// boot classpath
128
	// set the classpath
129
	commandLine.addElement("-Xbootclasspath:" + buildBootClassPath());
130
131
	// regular classpath
132
	commandLine.addElement("-classpath");
129
	commandLine.addElement("-classpath");
133
	commandLine.addElement(buildClassPath());
130
	String classpath = buildBootClassPath() + File.pathSeparator + buildClassPath();
131
	commandLine.addElement(classpath);
134
132
135
	// code snippet runner class
133
	// code snippet runner class
136
	if (this.evalPort != -1) {
134
	if (this.evalPort != -1) {

Return to bug 144742