]> source.dussan.org Git - aspectj.git/commitdiff
Now adds value of "aspectjrt.path" system property to
authoracolyer <acolyer>
Wed, 12 Mar 2003 15:40:04 +0000 (15:40 +0000)
committeracolyer <acolyer>
Wed, 12 Mar 2003 15:40:04 +0000 (15:40 +0000)
classpath - needed for release testing

ajde/testsrc/org/aspectj/ajde/NullIdeProperties.java

index 03173f33bd3d5149310dbddbc81b4c53a34a0a69..2f12d78663c489961fdc08af28625d3f20497246 100644 (file)
@@ -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() {