]> source.dussan.org Git - aspectj.git/commitdiff
Altered classpath calculating logic to hopefully work on the build machine
authoraclement <aclement>
Tue, 14 Jun 2005 14:50:30 +0000 (14:50 +0000)
committeraclement <aclement>
Tue, 14 Jun 2005 14:50:30 +0000 (14:50 +0000)
tests/src/org/aspectj/systemtest/incremental/tools/AjdeInteractionTestbed.java

index f90ed90b3561a250a32bbb12e8b0b6c7d5929023..571d04ba0055c1963549d9c8d9af26670d2bd9f6 100644 (file)
@@ -366,9 +366,10 @@ public class AjdeInteractionTestbed extends TestCase {
                        log("MyProjectProperties.getClasspath()");
                        String cp =  
                          new File(testdataSrcDir) + File.pathSeparator +
-                 System.getProperty("sun.boot.class.path") + File.pathSeparator +  
-                 "../runtime/bin" + File.pathSeparator + 
-                 System.getProperty("aspectjrt.path"); 
+                 System.getProperty("sun.boot.class.path") + 
+                 File.pathSeparator + "../runtime/bin" + 
+                 File.pathSeparator +  System.getProperty("aspectjrt.path") +
+                 File.pathSeparator+".."+File.separator+"lib" + File.separator+"test"+File.separator+"aspectjrt.jar";
                        
                        // look at dependant projects
                        List projects = (List)dependants.get(projectName);