summaryrefslogtreecommitdiffstats
path: root/org.aspectj.ajdt.core
diff options
context:
space:
mode:
authoravasseur <avasseur>2005-05-11 14:36:35 +0000
committeravasseur <avasseur>2005-05-11 14:36:35 +0000
commit0e803e159d53b87c79213cb0c4872b195099da38 (patch)
tree24200e41b073467963fbcf80bdcfc596b1043100 /org.aspectj.ajdt.core
parentf30900cda23368231337c714dfda2747d021e80e (diff)
downloadaspectj-0e803e159d53b87c79213cb0c4872b195099da38.tar.gz
aspectj-0e803e159d53b87c79213cb0c4872b195099da38.zip
remove bad _IDE folder instead of bin/ that leads to odd side effects, add tools.jar to tests .classpath module for LTW tests using AntSpec
Diffstat (limited to 'org.aspectj.ajdt.core')
-rw-r--r--org.aspectj.ajdt.core/testsrc/org/aspectj/tools/ajc/Ajc.java9
-rw-r--r--org.aspectj.ajdt.core/testsrc/org/aspectj/tools/ajc/AjcTestCase.java20
2 files changed, 5 insertions, 24 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 edfb056f1..9e5f8cc2d 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
@@ -52,18 +52,11 @@ public class Ajc {
".."+File.separator+"lib"+File.separator+"test"+File.separator+"aspectjrt.jar"+ File.pathSeparator+
".."+File.separator+"lib"+File.separator+"test"+File.separator+"testing-client.jar" + File.pathSeparator +
".."+File.separator+"aspectj5rt"+File.separator+"bin" + File.pathSeparator
- //Alex: adding "_IDE" since there is no "bin" output when working within IDEA.
- // my convention is thus to have a "modules/_IDE" folder where IDEA will write
- // Since modules/* have circular dependancies, there is no way to have multiple "modules"
- // (like Eclipse projects in one workspace) in IDEA, so all will be build there.
- // Note: adding it last means that a change in the IDE aspectj5rt module f.e. without
- // "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+"bridge"+File.separator+"bin"
+ File.pathSeparator+ ".."+File.separator+"loadtime"+File.separator+"bin"
;
+
private CompilationResult result;
private File sandbox;
private File baseDir;
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 0d41d06c0..c4cace3b3 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
@@ -72,23 +72,11 @@ public class AjcTestCase extends TestCase {
protected Ajc ajc;
public static final String DEFAULT_CLASSPATH_ENTRIES =
- File.pathSeparator +
- ".." + File.separator + "runtime" + File.separator + "bin" +
- File.pathSeparator +
- ".." + File.separator + "testing-client" + File.separator + "bin" +
- File.pathSeparator +
- ".." + File.separator + "bridge" + File.separator + "bin" +
- File.pathSeparator +
- ".." + File.separator + "util" + File.separator + "bin" +
+ File.pathSeparator + ".." + File.separator + "runtime" + File.separator + "bin" +
+ File.pathSeparator + ".." + File.separator + "testing-client" + File.separator + "bin" +
+ File.pathSeparator + ".." + File.separator + "bridge" + File.separator + "bin" +
+ File.pathSeparator + ".." + File.separator + "util" + File.separator + "bin" +
File.pathSeparator + ".." + File.separator + "aspectj5rt" + File.separator + "bin" +
- //Alex: adding "_IDE" since there is no "bin" output when working within IDEA.
- // my convention is thus to have a "modules/_IDE" folder where IDEA will write
- // Since modules/* have circular dependancies, there is no way to have multiple "modules"
- // (like Eclipse projects in one workspace) in IDEA, so all will be build there.
- // Note: adding it last means that a change in the IDE aspectj5rt module f.e. without
- // "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+"loadtime"+File.separator+"bin"
;