summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/src/org/aspectj/systemtest/incremental/tools/AjdeInteractionTestbed.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/src/org/aspectj/systemtest/incremental/tools/AjdeInteractionTestbed.java b/tests/src/org/aspectj/systemtest/incremental/tools/AjdeInteractionTestbed.java
index f90ed90b3..571d04ba0 100644
--- a/tests/src/org/aspectj/systemtest/incremental/tools/AjdeInteractionTestbed.java
+++ b/tests/src/org/aspectj/systemtest/incremental/tools/AjdeInteractionTestbed.java
@@ -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);