diff options
author | avasseur <avasseur> | 2005-05-04 14:57:21 +0000 |
---|---|---|
committer | avasseur <avasseur> | 2005-05-04 14:57:21 +0000 |
commit | 2679e77604bf50748ec715206258dd8a3586fb87 (patch) | |
tree | 3ea1965e734da2b1490aff3460ef37c8bd3fb05a /tests/java5/ataspectj/ajc-ant.xml | |
parent | 929c87018158604e439a24fbdfdb721d6a07fff7 (diff) | |
download | aspectj-2679e77604bf50748ec715206258dd8a3586fb87.tar.gz aspectj-2679e77604bf50748ec715206258dd8a3586fb87.zip |
LTW modules + AntSpec to test LTW in the sandbox + code cleanup in my FIXME + fix in error handling when no debug info can be read from @Aj aspect (many files modified since refactored IMessageHanlder for LTW dontIgnore method)
Diffstat (limited to 'tests/java5/ataspectj/ajc-ant.xml')
-rw-r--r-- | tests/java5/ataspectj/ajc-ant.xml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/java5/ataspectj/ajc-ant.xml b/tests/java5/ataspectj/ajc-ant.xml new file mode 100644 index 000000000..4aaf76d0d --- /dev/null +++ b/tests/java5/ataspectj/ajc-ant.xml @@ -0,0 +1,20 @@ +<!-- ajc-ant script, not to be used from Ant commant line - see AntSpec --> +<project name="foo" default="all"> + + <target name="compile:javac"> + <!-- compile only javac compilable stuff --> + <javac destdir="${aj.sandbox}" classpathref="aj.path" + srcdir="${basedir}" + includes="ataspectj/*" + debug="true"> + </javac> + </target> + + <target name="all" depends="compile:javac"> + <java fork="yes" classname="ataspectj.AllLTWTests" failonerror="yes"> + <classpath refid="aj.path"/> + <jvmarg value="-javaagent:${aj.root}/lib/test/loadtime5.jar"/> + <jvmarg value="-Daj5.def=ataspectj/aop.xml"/> + </java> + </target> +</project>
\ No newline at end of file |