Text test suite was not being invoked.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@166153 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2005-05-02 23:05:47 +00:00
parent f9e986558f
commit d14f130cc4
1 changed files with 9 additions and 1 deletions

View File

@ -148,7 +148,8 @@ limitations under the License.
test.exception,
test.math,
test.mutable,
test.time"
test.text,
test.time"
description="Run all unit test cases">
<echo message="Running tests ..."/>
</target>
@ -194,6 +195,13 @@ limitations under the License.
<classpath refid="test.classpath"/>
</java>
</target>
<target name="test.text" depends="compile.tests">
<echo message="Running text package tests ..."/>
<java classname="${test.runner}" fork="yes" failonerror="${test.failonerror}">
<arg value="org.apache.commons.lang.text.TextTestSuite"/>
<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}">