Improve ant script to provide more info on tests
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131658 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2caafbc11f
commit
f655a04d2d
12
build.xml
12
build.xml
|
@ -169,9 +169,11 @@
|
||||||
|
|
||||||
<!-- ====================================================================== -->
|
<!-- ====================================================================== -->
|
||||||
|
|
||||||
|
<!-- Used to obtain more detailed info on test failures -->
|
||||||
<target name="test" depends="compile.tests"
|
<target name="test" depends="compile.tests"
|
||||||
description="Run all unit test cases">
|
description="Run all unit test cases">
|
||||||
<junit printsummary="yes" haltonfailure="yes">
|
<junit printsummary="yes" haltonfailure="yes" showoutput="yes">
|
||||||
|
<formatter type="brief" />
|
||||||
<classpath>
|
<classpath>
|
||||||
<pathelement location="${build.classes}"/>
|
<pathelement location="${build.classes}"/>
|
||||||
<pathelement location="${build.tests}"/>
|
<pathelement location="${build.tests}"/>
|
||||||
|
@ -180,7 +182,13 @@
|
||||||
|
|
||||||
<batchtest fork="yes">
|
<batchtest fork="yes">
|
||||||
<fileset dir="${source.test}">
|
<fileset dir="${source.test}">
|
||||||
<include name="**/TestAllPackages.java"/>
|
<include name="**/map/TestT*.java"/>
|
||||||
|
<exclude name="**/TestAll*.java"/>
|
||||||
|
<exclude name="**/TestArrayList.java"/>
|
||||||
|
<exclude name="**/TestLinkedList.java"/>
|
||||||
|
<exclude name="**/TestHashMap.java"/>
|
||||||
|
<exclude name="**/TestTreeMap.java"/>
|
||||||
|
<exclude name="**/TestTypedCollection.java"/>
|
||||||
</fileset>
|
</fileset>
|
||||||
</batchtest>
|
</batchtest>
|
||||||
</junit>
|
</junit>
|
||||||
|
|
Loading…
Reference in New Issue