aboutsummaryrefslogtreecommitdiffstats
path: root/aspectj5rt/build.xml
diff options
context:
space:
mode:
authoravasseur <avasseur>2005-04-26 08:54:13 +0000
committeravasseur <avasseur>2005-04-26 08:54:13 +0000
commit3e1783bc03e372ad8957e5e24e41b5c7d0e7dd26 (patch)
tree14f5f5886349aee66c1cf6ffafa22088de277844 /aspectj5rt/build.xml
parentd00224721f28759cee41f2759979248ddb69858d (diff)
downloadaspectj-3e1783bc03e372ad8957e5e24e41b5c7d0e7dd26.tar.gz
aspectj-3e1783bc03e372ad8957e5e24e41b5c7d0e7dd26.zip
fix local build so that test run with 1.5
fix Adrian test that were having some assumption on ordering which happens to fail with my 1.5 compiler
Diffstat (limited to 'aspectj5rt/build.xml')
-rw-r--r--aspectj5rt/build.xml8
1 files changed, 6 insertions, 2 deletions
diff --git a/aspectj5rt/build.xml b/aspectj5rt/build.xml
index 24d8cf7ad..f4a718ff5 100644
--- a/aspectj5rt/build.xml
+++ b/aspectj5rt/build.xml
@@ -26,8 +26,12 @@
</target>
<target name="test:compile" depends="compile" if="jdk15">
- <!-- TODO: if test relies on 1.5 source, then needs to override below -->
- <testcompile project="aspectj5rt" path="aspectj5rt.test.src.path"/>
+ <mkdir dir="../aspectj5rt/bintest"/>
+ <javac debug="on" destdir="../aspectj5rt/bintest" source="1.5" target="1.5">
+ <src path="../aspectj5rt/testsrc"/>
+ <classpath refid="aspectj5rt.test.src.path"/>
+ <classpath path="../aspectj5rt/bin"/>
+ </javac>
</target>
<target name="test" depends="test:compile" if="jdk15">