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:
Gary D. Gregory 2004-10-01 21:53:50 +00:00
parent 9c08168c2d
commit f1106ca1c1
1 changed files with 9 additions and 1 deletions

View File

@ -16,7 +16,7 @@ limitations under the License.
<project name="Lang" default="compile" basedir="."> <project name="Lang" default="compile" basedir=".">
<!-- <!--
"Lang" component of the Jakarta Commons Subproject "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 ===================================== --> <!-- ========== Initialize Properties ===================================== -->
<property file="${user.home}/${component.name}.build.properties"/> <property file="${user.home}/${component.name}.build.properties"/>
@ -144,6 +144,7 @@ limitations under the License.
test.enum, test.enum,
test.exception, test.exception,
test.math, test.math,
test.mutable,
test.time" test.time"
description="Run all unit test cases"> description="Run all unit test cases">
<echo message="Running tests ..."/> <echo message="Running tests ..."/>
@ -183,6 +184,13 @@ limitations under the License.
<classpath refid="test.classpath"/> <classpath refid="test.classpath"/>
</java> </java>
</target> </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"> <target name="test.time" depends="compile.tests">
<echo message="Running time package tests ..."/> <echo message="Running time package tests ..."/>
<java classname="${test.runner}" fork="yes" failonerror="${test.failonerror}"> <java classname="${test.runner}" fork="yes" failonerror="${test.failonerror}">