scolebourne 2002/12/22 16:33:50
Modified: lang build.xml
Log:
Update for math package
Revision Changes Path
1.8 +12 -2 jakarta-commons/lang/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-commons/lang/build.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- build.xml 18 Dec 2002 23:30:20 -0000 1.7
+++ build.xml 23 Dec 2002 00:33:50 -0000 1.8
@@ -159,7 +159,8 @@
test.builder,
test.enum,
test.exception,
- test.functor,
+ test.functor,
+ test.math,
test.reflect,
test.time,
test.util"
@@ -209,6 +210,15 @@
<java classname="${test.runner}" fork="yes"
failonerror="${test.failonerror}">
<arg value="org.apache.commons.lang.functor.FunctorTestSuite"/>
+ <classpath refid="test.classpath"/>
+ </java>
+ </target>
+
+ <target name="test.math" depends="compile.tests">
+ <echo message="Running math package tests ..."/>
+ <java classname="${test.runner}" fork="yes"
+ failonerror="${test.failonerror}">
+ <arg value="org.apache.commons.lang.math.MathTestSuite"/>
<classpath refid="test.classpath"/>
</java>
</target>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>