Author: ggregory
Date: Mon May 2 16:05:47 2005
New Revision: 166153
URL: http://svn.apache.org/viewcvs?rev=166153&view=rev
Log:
Text test suite was not being invoked.
Modified:
jakarta/commons/proper/lang/trunk/build.xml
Modified: jakarta/commons/proper/lang/trunk/build.xml
URL:
http://svn.apache.org/viewcvs/jakarta/commons/proper/lang/trunk/build.xml?rev=166153&r1=166152&r2=166153&view=diff
==============================================================================
--- jakarta/commons/proper/lang/trunk/build.xml (original)
+++ jakarta/commons/proper/lang/trunk/build.xml Mon May 2 16:05:47 2005
@@ -148,7 +148,8 @@
test.exception,
test.math,
test.mutable,
- test.time"
+ test.text,
+ test.time"
description="Run all unit test cases">
<echo message="Running tests ..."/>
</target>
@@ -191,6 +192,13 @@
<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.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>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]