diff options
author | aclement <aclement> | 2008-10-29 17:27:48 +0000 |
---|---|---|
committer | aclement <aclement> | 2008-10-29 17:27:48 +0000 |
commit | 671b0bc0b2ceaca8d5382b874fdf470c1dbb76e2 (patch) | |
tree | cd246ca9bc5b5b07de3cbf257cd1338b221d5d20 /org.aspectj.ajdt.core | |
parent | 86448d8279f05935ba04ac205f9f7928fc21a845 (diff) | |
download | aspectj-671b0bc0b2ceaca8d5382b874fdf470c1dbb76e2.tar.gz aspectj-671b0bc0b2ceaca8d5382b874fdf470c1dbb76e2.zip |
matcher on classpath for build machine test runs
Diffstat (limited to 'org.aspectj.ajdt.core')
-rw-r--r-- | org.aspectj.ajdt.core/testsrc/org/aspectj/tools/ajc/AjcTestCase.java | 20 |
1 files changed, 13 insertions, 7 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 d6575870a..2a4d0e7d2 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,8 +68,12 @@ public class AjcTestCase extends TestCase { + File.separator + "testing-client" + File.separator + "bin" + File.pathSeparator + ".." + File.separator + "runtime" + File.separator + "bin" + File.pathSeparator + ".." + File.separator + "aspectj5rt" + File.separator + "bin" + File.pathSeparator + ".." + File.separator + "org.aspectj.matcher" + File.separator + "bin" + File.pathSeparator - + ".." + File.separator + "lib" + File.separator + "junit" + File.separator + "junit.jar" + File.pathSeparator + ".." - + File.separator + "lib" + + ".." + File.separator + "lib" + File.separator + "junit" + File.separator + + "junit.jar" + + File.pathSeparator + + ".." + + File.separator + + "lib" + File.separator + "bcel" + File.separator @@ -87,11 +91,13 @@ public class AjcTestCase extends TestCase { // 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 + "aj-build" + File.separator + "jars" + File.separator + "loadtime.jar" - + File.pathSeparator + ".." + File.separator + "aj-build" + File.separator + "jars" + File.separator + "weaver.jar" - + File.pathSeparator + ".." + File.separator + "aj-build" + File.separator + "jars" + File.separator + "weaver5.jar" - + File.pathSeparator + ".." + File.separator + "aj-build" + File.separator + "jars" + File.separator + "asm.jar" - + File.pathSeparator + ".." + File.separator + "lib" + File.separator + "test" + File.separator + "testing-client.jar" + + File.pathSeparator + ".." + File.separator + "aj-build" + File.separator + "jars" + File.separator + + "org.aspectj.matcher.jar" + File.pathSeparator + ".." + File.separator + "aj-build" + File.separator + "jars" + + File.separator + "loadtime.jar" + File.pathSeparator + ".." + File.separator + "aj-build" + File.separator + "jars" + + File.separator + "weaver.jar" + File.pathSeparator + ".." + File.separator + "aj-build" + File.separator + "jars" + + File.separator + "weaver5.jar" + File.pathSeparator + ".." + File.separator + "aj-build" + File.separator + "jars" + + File.separator + "asm.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"; |