diff options
author | acolyer <acolyer> | 2003-09-29 15:34:51 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2003-09-29 15:34:51 +0000 |
commit | 99ebf5fe2d58535da0dcff64f9a701de94a3e3c6 (patch) | |
tree | bd7652b71283406d1ff831cfcd8f80b2fdee1c97 | |
parent | 0043498e4384daa48bdd0e976003148e5d06ac53 (diff) | |
download | aspectj-99ebf5fe2d58535da0dcff64f9a701de94a3e3c6.tar.gz aspectj-99ebf5fe2d58535da0dcff64f9a701de94a3e3c6.zip |
When performing a release build, run the test-all target in junitModules.xml rather than the default one.
This causes the ajc tests to be run a second time, but has the advantage of creating the junit xml output
files for the ajc tests - which are needed by cruise control. Since cruise control will be the dominant caller of
this script, the extra overhead of running tests multiple times is acceptable.
-rw-r--r-- | build/release/build.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/release/build.xml b/build/release/build.xml index e3056527e..e34ee0b04 100644 --- a/build/release/build.xml +++ b/build/release/build.xml @@ -407,7 +407,7 @@ depends="init-variables,init-junitTests-available"> <antcall target="do-run-ant"> <param name="run.ant.file" value="junitModules.xml"/> - <param name="ant.target" value=""/> + <param name="ant.target" value="test-all"/> <param name="ant.dir" location="${aspectj.modules.dir}/tests"/> <param name="ant.output" |