aboutsummaryrefslogtreecommitdiffstats
path: root/testing/src
diff options
context:
space:
mode:
authorAndy Clement <aclement@pivotal.io>2019-02-19 12:07:48 -0800
committerAndy Clement <aclement@pivotal.io>2019-02-19 12:07:48 -0800
commitb858c788515524c2224165fc615638b75266954f (patch)
treeb82fb4e2d729e23909ac4375a590103851558f67 /testing/src
parent35c4a7d9d8418e100fe9338b7191a05a9f073bdc (diff)
downloadaspectj-b858c788515524c2224165fc615638b75266954f.tar.gz
aspectj-b858c788515524c2224165fc615638b75266954f.zip
improved test harnesses for working with runtime
Diffstat (limited to 'testing/src')
-rw-r--r--testing/src/test/java/org/aspectj/testing/CompileSpec.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/testing/src/test/java/org/aspectj/testing/CompileSpec.java b/testing/src/test/java/org/aspectj/testing/CompileSpec.java
index 22570e3d1..97cba2bc5 100644
--- a/testing/src/test/java/org/aspectj/testing/CompileSpec.java
+++ b/testing/src/test/java/org/aspectj/testing/CompileSpec.java
@@ -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;
}