Run mutable tests.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137951 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9c08168c2d
commit
f1106ca1c1
10
build.xml
10
build.xml
|
@ -16,7 +16,7 @@ limitations under the License.
|
|||
<project name="Lang" default="compile" basedir=".">
|
||||
<!--
|
||||
"Lang" component of the Jakarta Commons Subproject
|
||||
$Id: build.xml,v 1.27 2004/09/30 16:51:14 ggregory Exp $
|
||||
$Id: build.xml,v 1.28 2004/10/01 21:53:50 ggregory Exp $
|
||||
-->
|
||||
<!-- ========== Initialize Properties ===================================== -->
|
||||
<property file="${user.home}/${component.name}.build.properties"/>
|
||||
|
@ -144,6 +144,7 @@ limitations under the License.
|
|||
test.enum,
|
||||
test.exception,
|
||||
test.math,
|
||||
test.mutable,
|
||||
test.time"
|
||||
description="Run all unit test cases">
|
||||
<echo message="Running tests ..."/>
|
||||
|
@ -183,6 +184,13 @@ limitations under the License.
|
|||
<classpath refid="test.classpath"/>
|
||||
</java>
|
||||
</target>
|
||||
<target name="test.mutable" depends="compile.tests">
|
||||
<echo message="Running mutable package tests ..."/>
|
||||
<java classname="${test.runner}" fork="yes" failonerror="${test.failonerror}">
|
||||
<arg value="org.apache.commons.lang.mutable.MutableTestSuite"/>
|
||||
<classpath refid="test.classpath"/>
|
||||
</java>
|
||||
</target>
|
||||
<target name="test.time" depends="compile.tests">
|
||||
<echo message="Running time package tests ..."/>
|
||||
<java classname="${test.runner}" fork="yes" failonerror="${test.failonerror}">
|
||||
|
|
Loading…
Reference in New Issue