Update for math package

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137210 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2002-12-23 00:33:50 +00:00
parent 8e3f80d77e
commit 01eafff113
1 changed files with 12 additions and 2 deletions

View File

@ -3,7 +3,7 @@
<!--
"Lang" component of the Jakarta Commons Subproject
$Id: build.xml,v 1.7 2002/12/18 23:30:20 scolebourne Exp $
$Id: build.xml,v 1.8 2002/12/23 00:33:50 scolebourne Exp $
-->
@ -159,7 +159,8 @@
test.builder,
test.enum,
test.exception,
test.functor,
test.functor,
test.math,
test.reflect,
test.time,
test.util"
@ -213,6 +214,15 @@
</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>
<target name="test.reflect" depends="compile.tests">
<echo message="Running reflect package tests ..."/>
<java classname="${test.runner}" fork="yes"