Browse Source

Add loadtime into the classpath so it can find the message handler.

tags/PRE_ANDY
aclement 19 years ago
parent
commit
de31f85842

+ 2
- 0
org.aspectj.ajdt.core/testsrc/org/aspectj/tools/ajc/Ajc.java View File

@@ -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;

+ 3
- 1
org.aspectj.ajdt.core/testsrc/org/aspectj/tools/ajc/AjcTestCase.java View File

@@ -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

Loading…
Cancel
Save