Author: doogie
Date: Sat Feb 20 23:41:41 2010
New Revision: 912256
URL:
http://svn.apache.org/viewvc?rev=912256&view=revLog:
Fix handling of stderr/stdout when running multiple tests when
forkmode=once.
Modified:
ofbiz/trunk/common.xml
Modified: ofbiz/trunk/common.xml
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/common.xml?rev=912256&r1=912255&r2=912256&view=diff==============================================================================
--- ofbiz/trunk/common.xml (original)
+++ ofbiz/trunk/common.xml Sat Feb 20 23:41:41 2010
@@ -107,14 +107,13 @@
<target name="tests" depends="jar">
<mkdir dir="${build.dir}/test-results"/>
- <junit fork="on" haltonfailure="on" forkmode="once">
+ <junit fork="on" haltonfailure="on" forkmode="once" showoutput="true" printsummary="true">
<classpath>
<path refid="junit.class.path"/>
<path refid="test.class.path"/>
<pathelement location="${build.dir}/lib/${name}.jar"/>
</classpath>
<sysproperty key="ofbiz.home" value="${ofbiz.home.dir}"/>
- <formatter usefile="false" type="plain"/>
<batchtest>
<filelist refid="test.classes"/>
</batchtest>