Author: mbenson Date: Tue Sep 26 07:50:40 2006 New Revision: 450067 URL: http://svn.apache.org/viewvc?view=rev&rev=450067 Log: attempt to fix Gump failures
Modified: ant/core/trunk/build.xml Modified: ant/core/trunk/build.xml URL: http://svn.apache.org/viewvc/ant/core/trunk/build.xml?view=diff&rev=450067&r1=450066&r2=450067 ============================================================================== --- ant/core/trunk/build.xml (original) +++ ant/core/trunk/build.xml Tue Sep 26 07:50:40 2006 @@ -1549,7 +1549,7 @@ =================================================================== --> - <target name="tests-failed"> + <target name="check-failed"> <condition property="tests.failed"> <or> <isset property="junit.failed" /> @@ -1558,10 +1558,13 @@ </condition> </target> - <target name="test" depends="junit-report,antunit-report,tests-failed" - description="--> run unit tests"> + <target name="test" depends="junit-report,antunit-report,check-failed" + description="--> run unit tests / reports"> <fail if="tests.failed">Unit tests failed; see ${build.junit.reports} / ${antunit.reports}</fail> </target> + + <target name="run-tests" depends="junit-tests,antunit-tests,check-failed" + description="--> run unit tests" /> <target name="test-init" depends="probe-offline,check_for_optional_packages"> <macrodef name="test-junit"> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]