Browse Source

attempt to fix Gump failures

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@450067 13f79535-47bb-0310-9956-ffa450edef68
master
Matthew Jason Benson 19 years ago
parent
commit
3df48b005a
1 changed files with 6 additions and 3 deletions
  1. +6
    -3
      build.xml

+ 6
- 3
build.xml View File

@@ -1549,7 +1549,7 @@
===================================================================
-->

<target name="tests-failed">
<target name="check-failed">
<condition property="tests.failed">
<or>
<isset property="junit.failed" />
@@ -1558,11 +1558,14 @@
</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">
<element name="junit-nested" implicit="true" />


Loading…
Cancel
Save