Browse Source

optionaly allow build to pass even if tests fail

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@568091 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Reilly 18 years ago
parent
commit
3d0a8d3ae3
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      build.xml

+ 1
- 1
build.xml View File

@@ -1627,7 +1627,7 @@

<target name="test" description="--> run unit tests and reports"
depends="dump-info,junit-report,antunit-report,check-failed">
<fail if="tests.failed">Unit tests failed;
<fail if="tests.failed" unless="ignore.tests.failed">Unit tests failed;
see ${build.junit.reports} / ${antunit.reports}
</fail>
</target>


Loading…
Cancel
Save