From f0c367c834953aea60991d54129f57013b64af54 Mon Sep 17 00:00:00 2001 From: aclement Date: Tue, 14 Jun 2005 14:50:30 +0000 Subject: [PATCH] Altered classpath calculating logic to hopefully work on the build machine --- .../incremental/tools/AjdeInteractionTestbed.java | 7 ++++--- 1 file 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); -- 2.39.5