summaryrefslogtreecommitdiffstats
path: root/ajde
diff options
context:
space:
mode:
authoracolyer <acolyer>2003-03-12 15:40:04 +0000
committeracolyer <acolyer>2003-03-12 15:40:04 +0000
commitf4a9d27439f6f8a16b1faff7ec26cf7fbac84eba (patch)
tree5a7c2361bd54a41c0fe72046cf821abe1757b775 /ajde
parent9b0c1228ffe9dd601a9c3b996b0af888cd21d10f (diff)
downloadaspectj-f4a9d27439f6f8a16b1faff7ec26cf7fbac84eba.tar.gz
aspectj-f4a9d27439f6f8a16b1faff7ec26cf7fbac84eba.zip
Now adds value of "aspectjrt.path" system property to
classpath - needed for release testing
Diffstat (limited to 'ajde')
-rw-r--r--ajde/testsrc/org/aspectj/ajde/NullIdeProperties.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/ajde/testsrc/org/aspectj/ajde/NullIdeProperties.java b/ajde/testsrc/org/aspectj/ajde/NullIdeProperties.java
index 03173f33b..2f12d7866 100644
--- a/ajde/testsrc/org/aspectj/ajde/NullIdeProperties.java
+++ b/ajde/testsrc/org/aspectj/ajde/NullIdeProperties.java
@@ -66,8 +66,11 @@ public class NullIdeProperties implements ProjectPropertiesAdapter {
//XXX
// AMC - added in path separator since absence was causing
// build failures with invalid classpath
+ // AMC - subsequently added value of "aspectjrt.path property so that
+ // when testing with a non-development jar the version tests find the right one.
return testProjectPath + File.pathSeparator +
- System.getProperty("sun.boot.class.path") + File.pathSeparator + "../runtime/bin";
+ System.getProperty("sun.boot.class.path") + File.pathSeparator + "../runtime/bin" +
+ File.pathSeparator + System.getProperty("aspectjrt.path");
}
public String getOutputPath() {