From f4a9d27439f6f8a16b1faff7ec26cf7fbac84eba Mon Sep 17 00:00:00 2001 From: acolyer Date: Wed, 12 Mar 2003 15:40:04 +0000 Subject: Now adds value of "aspectjrt.path" system property to classpath - needed for release testing --- ajde/testsrc/org/aspectj/ajde/NullIdeProperties.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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() { -- cgit v1.2.3