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:
parent
f9e986558f
commit
d14f130cc4
10
build.xml
10
build.xml
|
@ -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}">
|
||||
|
|
Loading…
Reference in New Issue