diff -ruN eut_old_eclipse172820/org/eclipse/jdt/core/tests/compiler/regression/BatchCompilerTest.java eut_new_eclipse172820/org/eclipse/jdt/core/tests/compiler/regression/BatchCompilerTest.java --- eut_old_eclipse172820/org/eclipse/jdt/core/tests/compiler/regression/BatchCompilerTest.java 2007-05-16 19:22:46.000000000 +0700 +++ eut_new_eclipse172820/org/eclipse/jdt/core/tests/compiler/regression/BatchCompilerTest.java 2007-05-16 16:12:59.000000000 +0700 @@ -11,6 +11,7 @@ package org.eclipse.jdt.core.tests.compiler.regression; import java.io.File; +import java.io.FilenameFilter; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; @@ -43,11 +44,30 @@ public static Test suite() { return buildUniqueComplianceTestSuite(testClass(), COMPLIANCE_1_5); } - + private String getHYClasses() { + String jre = System.getProperty("java.home"); + FilenameFilter jarFilter = new FilenameFilter() { + public boolean accept(File dir, String name) { + return (name.endsWith(".jar") && !name.endsWith("-src.jar")); + } + }; + String libraryClasses = ""; + String path_separator = System.getProperty("path.separator"); + String[] jars = new File(jre + "/lib/boot/").list(jarFilter); + for (int i = 0; i < jars.length; i++) { + libraryClasses = libraryClasses + jre + "/lib/boot/" + jars[i] + path_separator; + } + return libraryClasses; + } + private String getLibraryClasses() { if (Util.isMacOS()) { return JRE_HOME_DIR + "/../Classes/classes.jar"; } + final String vmName = System.getProperty("java.vm.name"); + if ("DRLVM".equals(vmName)) { + return getHYClasses(); + } return JRE_HOME_DIR + "/lib/rt.jar"; } diff -ruN eut_old_eclipse172820/org/eclipse/jdt/core/tests/runtime/DRLVMLauncher.java eut_new_eclipse172820/org/eclipse/jdt/core/tests/runtime/DRLVMLauncher.java --- eut_old_eclipse172820/org/eclipse/jdt/core/tests/runtime/DRLVMLauncher.java 1970-01-01 07:00:00.000000000 +0700 +++ eut_new_eclipse172820/org/eclipse/jdt/core/tests/runtime/DRLVMLauncher.java 2007-05-22 13:20:37.275347890 +0700 @@ -0,0 +1,146 @@ +/******************************************************************************* + * Copyright (c) 2000, 2006 IBM Corporation and others. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * IBM Corporation - initial API and implementation + *******************************************************************************/ +package org.eclipse.jdt.core.tests.runtime; + +import java.io.File; +import java.util.Vector; +/** + * This is a new vm launcher to support Apache Harmony + * (http://harmony.apache.org) settings + */ +public class DRLVMLauncher extends StandardVMLauncher { +/** + * @see LocalVMLauncher#getCommandLine + */ +public String[] getCommandLine() { + Vector commandLine= new Vector(); + + // VM binary + String vmLocation = this.vmPath + + (this.vmPath.endsWith(File.separator) ? "" : File.separator) + + "bin" + + File.separator + + "javaw"; + final String osName = System.getProperty("os.name"); + if (osName.indexOf("win32") != -1) { + vmLocation += ".exe"; + } + if (!new File(vmLocation).exists()) { + vmLocation = + this.vmPath + + (this.vmPath.endsWith(File.separator) ? "" : File.separator) + + "bin" + + File.separator + + "java"; + } + commandLine.addElement(vmLocation); + + // VM arguments + if (this.vmArguments != null) { + for (int i = 0; i < this.vmArguments.length; i++) { + commandLine.addElement(this.vmArguments[i]); + } + } + + // boot classpath + commandLine.addElement("-Xbootclasspath/a:" + buildBootClassPath()); + + // debug mode + if (this.debugPort != -1) { + commandLine.addElement("-Xdebug"); + commandLine.addElement("-Xnoagent"); + // commandLine.addElement("-Djava.compiler=NONE"); + commandLine.addElement( + "-Xrunjdwp:transport=dt_socket,address=" + + this.debugPort + + ",server=y,suspend=n"); + } + + // regular classpath + commandLine.addElement("-classpath"); + commandLine.addElement(buildClassPath()); + + // code snippet runner class + if (this.evalPort != -1) { + commandLine.addElement(CODE_SNIPPET_RUNNER_CLASS_NAME); + } + + // code snippet runner arguments + if (this.evalPort != -1) { + commandLine.addElement(EVALPORT_ARG); + commandLine.addElement(Integer.toString(this.evalPort)); + if (TARGET_HAS_FILE_SYSTEM) { + commandLine.addElement(CODESNIPPET_CLASSPATH_ARG); + commandLine.addElement(this.evalTargetPath + File.separator + REGULAR_CLASSPATH_DIRECTORY); + commandLine.addElement(CODESNIPPET_BOOTPATH_ARG); + commandLine.addElement(this.evalTargetPath + File.separator + BOOT_CLASSPATH_DIRECTORY); + } + } + + // program class + if (this.programClass != null) { + commandLine.addElement(this.programClass); + } + + // program arguments + if (this.programArguments != null) { + for (int i=0;i