diff options
author | wisberg <wisberg> | 2003-05-24 13:42:18 +0000 |
---|---|---|
committer | wisberg <wisberg> | 2003-05-24 13:42:18 +0000 |
commit | fcc0a6b0673cabb565a007e73ef111377cf45971 (patch) | |
tree | 16c10a0174fead98534d1b9b439b2bdc58d0c9cb /tests/product | |
parent | e782ccc04214649b21882474a8c71f6393d377cb (diff) | |
download | aspectj-fcc0a6b0673cabb565a007e73ef111377cf45971.tar.gz aspectj-fcc0a6b0673cabb565a007e73ef111377cf45971.zip |
-noExit to avoid stopping a wrapping ant script
Diffstat (limited to 'tests/product')
-rw-r--r-- | tests/product/build-aspectj/build.xml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/product/build-aspectj/build.xml b/tests/product/build-aspectj/build.xml index aea52183a..1d085df32 100644 --- a/tests/product/build-aspectj/build.xml +++ b/tests/product/build-aspectj/build.xml @@ -198,12 +198,14 @@ </target> <target name="test-tools" depends="init"> - <java classname="org.aspectj.tools.ajc.Main"> + <java classname="org.aspectj.tools.ajc.Main" + failonerror="true"> <classpath> <path refid="tools.libs"/> <pathelement path="${output.aspectjtools}"/> </classpath> <arg value="-help"/> + <arg value="-noExit"/> </java> </target> |