aboutsummaryrefslogtreecommitdiffstats
path: root/org.aspectj.ajdt.core/testsrc
diff options
context:
space:
mode:
authoraclement <aclement>2005-06-24 11:28:31 +0000
committeraclement <aclement>2005-06-24 11:28:31 +0000
commit3a48c22cbaa797a59139e51e244d208bd69996fa (patch)
tree52d72c965bcd1d5f1452a5ebea56e2e890224b17 /org.aspectj.ajdt.core/testsrc
parentc84327365db294d051dcd32690481b0f0281d756 (diff)
downloadaspectj-3a48c22cbaa797a59139e51e244d208bd69996fa.tar.gz
aspectj-3a48c22cbaa797a59139e51e244d208bd69996fa.zip
Fixed classpath for build machine.
Diffstat (limited to 'org.aspectj.ajdt.core/testsrc')
-rw-r--r--org.aspectj.ajdt.core/testsrc/org/aspectj/tools/ajc/AjcTestCase.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/org.aspectj.ajdt.core/testsrc/org/aspectj/tools/ajc/AjcTestCase.java b/org.aspectj.ajdt.core/testsrc/org/aspectj/tools/ajc/AjcTestCase.java
index d67b85c96..d87337ca7 100644
--- a/org.aspectj.ajdt.core/testsrc/org/aspectj/tools/ajc/AjcTestCase.java
+++ b/org.aspectj.ajdt.core/testsrc/org/aspectj/tools/ajc/AjcTestCase.java
@@ -68,6 +68,14 @@ public class AjcTestCase extends TestCase {
File.pathSeparator + ".." + File.separator + "aspectj5rt" + File.separator + "bin" +
File.pathSeparator+ ".."+File.separator+"lib"+File.separator+"junit"+File.separator+"junit.jar"
+ File.pathSeparator+ ".."+File.separator+"loadtime"+File.separator+"bin"
+
+ // When the build machine executes the tests, it is using code built into jars rather than code build into
+ // bin directories. This means for the necessary types to be found we have to put these jars on the classpath:
+ + File.pathSeparator+".."+File.separator+"aj-build"+File.separator+"jars"+File.separator+"bridge.jar"
+ + File.pathSeparator+".."+File.separator+"aj-build"+File.separator+"jars"+File.separator+"util.jar"
+ + File.pathSeparator+".."+File.separator+"lib" +File.separator+"test"+File.separator+"testing-client.jar"
+ // hmmm, this next one should perhaps point to an aj-build jar...
+ + File.pathSeparator+".."+File.separator+"lib" +File.separator+"test"+File.separator+"aspectjrt.jar"
;
/**