Przeglądaj źródła

improved test harnesses for working with runtime

tags/V1_9_3RC1
Andy Clement 5 lat temu
rodzic
commit
b858c78851

+ 4
- 1
org.aspectj.ajdt.core/src/test/java/org/aspectj/tools/ajc/AjcTestCase.java Wyświetl plik

@@ -670,6 +670,9 @@ public abstract class AjcTestCase extends TestCase {
vmargs ="";
}
try {
if (mp.indexOf("$runtimemodule") != -1) {
mp = mp.replace(mp.indexOf("$runtimemodule"),"$runtimemodule".length(),TestUtil.aspectjrtPath(true).toString());
}
if (mp.indexOf("$runtime") != -1) {
mp = mp.replace(mp.indexOf("$runtime"),"$runtime".length(),TestUtil.aspectjrtPath().toString());
}
@@ -930,7 +933,7 @@ public abstract class AjcTestCase extends TestCase {
if (-1 == cpIndex) {
String[] newargs = new String[args.length + 2];
newargs[0] = "-classpath";
newargs[1] = TestUtil.aspectjrtPath().getPath();
newargs[1] = TestUtil.aspectjrtPath(false).getPath();
System.arraycopy(args, 0, newargs, 2, args.length);
args = newargs;
cpIndex = 1;

+ 16
- 4
testing-util/src/main/java/org/aspectj/testing/util/TestUtil.java Wyświetl plik

@@ -72,13 +72,16 @@ public final class TestUtil {
private static final Properties LIB_RPATHS;
private static final Map LIB_ENTRIES;
private static File ASPECTJRT_PATH;
private static File ASPECTJRTJAR_PATH;
static {
{
String[] paths = { "sp:aspectjrt.path", "sp:aspectjrt.jar"
,"../lib/test/aspectjrt.jar", "../runtime/target/classes"
// ,"../aj-build/jars/aspectj5rt-all.jar", "../aj-build/jars/runtime.jar", "../runtime/bin"
};
String[] paths = {
"sp:aspectjrt.path",
"sp:aspectjrt.jar",
"../runtime/target/classes",
"../lib/test/aspectjrt.jar"};
ASPECTJRT_PATH = FileUtil.getBestFile(paths);
ASPECTJRTJAR_PATH = FileUtil.getBestFile(paths, true);
}
{
boolean j5 = false;
@@ -159,6 +162,15 @@ public final class TestUtil {
return ASPECTJRT_PATH;
}

// needsJar for module packaged runtime
public static File aspectjrtPath(boolean needsJar) {
if (needsJar) {
return ASPECTJRTJAR_PATH;
} else {
return ASPECTJRT_PATH;
}
}

public static URL fileToURL(File file) {
try {
return file.toURL();

+ 1
- 0
testing/src/test/java/org/aspectj/testing/CompileSpec.java Wyświetl plik

@@ -303,6 +303,7 @@ public class CompileSpec implements ITestStep {
}
private String rewrite(String path) {
path = path.replace("$runtimemodule", TestUtil.aspectjrtPath(true).toString());
path = path.replace("$runtime", TestUtil.aspectjrtPath().toString());
return path;
}

Ładowanie…
Anuluj
Zapisz