scolebourne 2002/08/11 16:20:09
Modified: lang build.xml
Log:
Add new Enum class tests to build xml
Revision Changes Path
1.2 +11 -2 jakarta-commons/lang/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-commons/lang/build.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- build.xml 19 Jul 2002 03:35:53 -0000 1.1
+++ build.xml 11 Aug 2002 23:20:09 -0000 1.2
@@ -153,7 +153,7 @@
<!-- ========== Unit Test Targets ========================================= -->
- <target name="test" depends="compile.tests, test.exception"
+ <target name="test" depends="compile.tests, test.exception, test.enum"
description="Run all unit test cases">
<echo message="Running tests ..."/>
<java classname="${test.runner}" fork="yes"
@@ -223,6 +223,15 @@
<java classname="${test.runner}" fork="yes"
failonerror="${test.failonerror}">
<arg value="org.apache.commons.lang.exception.ExceptionTestSuite"/>
+ <classpath refid="test.classpath"/>
+ </java>
+ </target>
+
+ <target name="test.enum" depends="compile.tests">
+ <echo message="Running enum package tests ..."/>
+ <java classname="${test.runner}" fork="yes"
+ failonerror="${test.failonerror}">
+ <arg value="org.apache.commons.lang.enum.EnumTestSuite"/>
<classpath refid="test.classpath"/>
</java>
</target>
--
To unsubscribe, e-mail: <mailto:commons-dev-unsubscribe@jakarta.apache.org>
For additional commands, e-mail: <mailto:commons-dev-help@jakarta.apache.org>
|