diff options
author | wisberg <wisberg> | 2005-05-11 19:03:52 +0000 |
---|---|---|
committer | wisberg <wisberg> | 2005-05-11 19:03:52 +0000 |
commit | 359b2b075018517eb608036e62ba37a644a29a30 (patch) | |
tree | 8ff6b5c9ea864000bdc4fe0d94daf7899e3e3dfc /build/release/build.xml | |
parent | 357d0cc4b8a77dbb56c8bc6b0b1e778a07c522ab (diff) | |
download | aspectj-359b2b075018517eb608036e62ba37a644a29a30.tar.gz aspectj-359b2b075018517eb608036e62ba37a644a29a30.zip |
Oh alright, back to junitModule.xml - another shot in the dark at cruise control
Diffstat (limited to 'build/release/build.xml')
-rw-r--r-- | build/release/build.xml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/build/release/build.xml b/build/release/build.xml index eb41713b7..38f4cabe0 100644 --- a/build/release/build.xml +++ b/build/release/build.xml @@ -443,6 +443,31 @@ </target> <target name="test-junit-modules" + depends="init-variables,init-junitTests-available"> + <antcall target="do-run-ant"> + <param name="run.ant.file" value="junitModules.xml"/> + <param name="ant.target" value="test-all"/> + <param name="ant.dir" + location="${aspectj.modules.dir}/tests"/> + <param name="ant.output" + location="${aj.build.log.dir}/test-junitModules"/> + </antcall> + + <property file="${java.home.file}"/> + <property name="tjm.copy.todir" + location="${aj.build.log.dir}/junitXmlOutput-${build.java.version}"/> + <mkdir dir="${tjm.copy.todir}"/> + <delete quiet="on"> + <fileset dir="${tjm.copy.todir}" includes="**/*"/> + </delete> + <property name="xmlSrcDir" + location="${aspectj.tests.dir}/bin/junitXmlOutput"/> + <move todir="${tjm.copy.todir}" > + <fileset dir="${xmlSrcDir}" includes="**/*"/> + </move> + </target> + + <target name="test-junit" depends="init-variables"> <antcall target="do-run-ant"> |