diff options
author | aclement <aclement> | 2005-06-24 11:28:31 +0000 |
---|---|---|
committer | aclement <aclement> | 2005-06-24 11:28:31 +0000 |
commit | 3a48c22cbaa797a59139e51e244d208bd69996fa (patch) | |
tree | 52d72c965bcd1d5f1452a5ebea56e2e890224b17 /org.aspectj.ajdt.core/testsrc | |
parent | c84327365db294d051dcd32690481b0f0281d756 (diff) | |
download | aspectj-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.java | 8 |
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" ; /** |