diff options
author | aclement <aclement> | 2005-06-14 14:50:30 +0000 |
---|---|---|
committer | aclement <aclement> | 2005-06-14 14:50:30 +0000 |
commit | f0c367c834953aea60991d54129f57013b64af54 (patch) | |
tree | 4e1fca77e647198b8d1b7882962c0d0c24a76e9b /tests/src | |
parent | d6bfe97b4db7f2109a4a088ebd0898b3ef8740e9 (diff) | |
download | aspectj-f0c367c834953aea60991d54129f57013b64af54.tar.gz aspectj-f0c367c834953aea60991d54129f57013b64af54.zip |
Altered classpath calculating logic to hopefully work on the build machine
Diffstat (limited to 'tests/src')
-rw-r--r-- | tests/src/org/aspectj/systemtest/incremental/tools/AjdeInteractionTestbed.java | 7 |
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); |