aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authoravasseur <avasseur>2005-04-26 10:52:36 +0000
committeravasseur <avasseur>2005-04-26 10:52:36 +0000
commit4cf9913a74c804176c04e9cc5effcbea24289418 (patch)
tree91ec70d29752f5561f8afca1941ae69caf83f058 /build
parent3e1783bc03e372ad8957e5e24e41b5c7d0e7dd26 (diff)
downloadaspectj-4cf9913a74c804176c04e9cc5effcbea24289418.tar.gz
aspectj-4cf9913a74c804176c04e9cc5effcbea24289418.zip
fix some build. Move AspectJrt5 test to AllTest15. Add weaver checks for @AJ annotations + tests from Andy H
Diffstat (limited to 'build')
-rw-r--r--build/build-common.xml14
1 files changed, 11 insertions, 3 deletions
diff --git a/build/build-common.xml b/build/build-common.xml
index e254ab608..5c4090c1f 100644
--- a/build/build-common.xml
+++ b/build/build-common.xml
@@ -107,18 +107,26 @@
</classpath>
<test name="@{suite}"/>
</junit>
- <!-- TODO AV - using java to invoke JUnit since the junit task is hidding errors - don't know why -->
- <!--<java classname="@{suite}" fork="on" dir="../@{project}">
+ </sequential>
+ </macrodef>
+
+ <macrodef name="testrun2">
+ <attribute name="project"/>
+ <attribute name="path"/>
+ <attribute name="suite"/>
+ <sequential>
+ <java classname="@{suite}" fork="on" dir="../@{project}">
<jvmarg line=""/>
<classpath>
<pathelement path="../@{project}/${build.dir}"/>
<pathelement path="../@{project}/${test.build.dir}"/>
<path refid="@{path}"/>
</classpath>
- </java>-->
+ </java>
</sequential>
</macrodef>
+
<target name="all" depends="init, compile, test:compile"/>