You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by mb...@apache.org on 2012/08/17 18:21:25 UTC

svn commit: r1374344 - /ant/core/trunk/build.xml

Author: mbenson
Date: Fri Aug 17 16:21:25 2012
New Revision: 1374344

URL: http://svn.apache.org/viewvc?rev=1374344&view=rev
Log:
improve readability of test failure info

Modified:
    ant/core/trunk/build.xml

Modified: ant/core/trunk/build.xml
URL: http://svn.apache.org/viewvc/ant/core/trunk/build.xml?rev=1374344&r1=1374343&r2=1374344&view=diff
==============================================================================
--- ant/core/trunk/build.xml (original)
+++ ant/core/trunk/build.xml Fri Aug 17 16:21:25 2012
@@ -1589,8 +1589,9 @@
 
   <target name="test" description="--> run unit tests and reports"
           depends="dump-info,junit-report,antunit-report,check-failed">
-    <fail if="tests.failed" unless="ignore.tests.failed">Unit tests failed;
-see ${build.junit.reports} / ${antunit.reports}
+    <fail if="tests.failed" unless="ignore.tests.failed">Unit tests failed; see:
+${build.junit.reports}
+${antunit.reports}
     </fail>
   </target>