Revision: 98
http://picross.svn.sourceforge.net/picross/?rev=98&view=rev
Author: yvan_norsa
Date: 2011-07-18 11:29:59 +0000 (Mon, 18 Jul 2011)
Log Message:
-----------
do not stop tests on first failure
Modified Paths:
--------------
trunk/build.xml
Modified: trunk/build.xml
===================================================================
--- trunk/build.xml 2011-06-29 15:09:14 UTC (rev 97)
+++ trunk/build.xml 2011-07-18 11:29:59 UTC (rev 98)
@@ -156,16 +156,14 @@
<target name="test"
depends="dist,compile-test">
- <junit haltonfailure="yes"
- filtertrace="off"
+ <junit filtertrace="off"
showoutput="on"
printsummary="withOutAndErr">
<formatter type="plain"
usefile="false" />
<batchtest fork="yes"
- filtertrace="on"
- haltonfailure="yes">
+ filtertrace="on">
<fileset dir="${test.dir}">
<include name="**/*Test.java" />
<exclude name="**/Abstract*Test.java" />
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|