diff options
author | aclement <aclement> | 2005-05-11 08:08:26 +0000 |
---|---|---|
committer | aclement <aclement> | 2005-05-11 08:08:26 +0000 |
commit | de31f858429a8688c98616b8631de6c780586aed (patch) | |
tree | d417868d1d9cf1b5b1175c747b3d497d7df449bf | |
parent | 99c37756e5de87d8f38d5de4809fec040f37ef83 (diff) | |
download | aspectj-de31f858429a8688c98616b8631de6c780586aed.tar.gz aspectj-de31f858429a8688c98616b8631de6c780586aed.zip |
Add loadtime into the classpath so it can find the message handler.
-rw-r--r-- | org.aspectj.ajdt.core/testsrc/org/aspectj/tools/ajc/Ajc.java | 2 | ||||
-rw-r--r-- | org.aspectj.ajdt.core/testsrc/org/aspectj/tools/ajc/AjcTestCase.java | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/org.aspectj.ajdt.core/testsrc/org/aspectj/tools/ajc/Ajc.java b/org.aspectj.ajdt.core/testsrc/org/aspectj/tools/ajc/Ajc.java index ad654f8e3..edfb056f1 100644 --- a/org.aspectj.ajdt.core/testsrc/org/aspectj/tools/ajc/Ajc.java +++ b/org.aspectj.ajdt.core/testsrc/org/aspectj/tools/ajc/Ajc.java @@ -61,6 +61,8 @@ public class Ajc { // but I don't want to have it first to avoid side effects when running from Ant. + File.pathSeparator + ".." + File.separator + "_IDE" + File.pathSeparator+ ".."+File.separator+"lib"+File.separator+"junit"+File.separator+"junit.jar" + + File.pathSeparator+ ".."+File.separator+"bridge"+File.separator+"bin" + + File.pathSeparator+ ".."+File.separator+"loadtime"+File.separator+"bin" ; private CompilationResult result; private File sandbox; 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 a3311ef1b..0d41d06c0 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 @@ -89,7 +89,9 @@ public class AjcTestCase extends TestCase { // "ant compile" to rebuild "aspect5rt/bin" will not expose the IDE changes... // but I don't want to have it first to avoid side effects when running from Ant. File.pathSeparator + ".." + File.separator + "_IDE" + - File.pathSeparator+ ".."+File.separator+"lib"+File.separator+"junit"+File.separator+"junit.jar"; + File.pathSeparator+ ".."+File.separator+"lib"+File.separator+"junit"+File.separator+"junit.jar" + + File.pathSeparator+ ".."+File.separator+"loadtime"+File.separator+"bin" + ; /** * Helper class that represents the specification of an individual |