You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by ba...@apache.org on 2002/02/28 04:06:54 UTC

cvs commit: jakarta-commons-sandbox/lang build.xml

bayard      02/02/27 19:06:54

  Modified:    lang     build.xml
  Log:
  added NumberRange test
  
  Revision  Changes    Path
  1.2       +12 -2     jakarta-commons-sandbox/lang/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/lang/build.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- build.xml	22 Feb 2002 05:56:25 -0000	1.1
  +++ build.xml	28 Feb 2002 03:06:54 -0000	1.2
  @@ -3,7 +3,7 @@
   
   <!--
           "Lang" component of the Jakarta Commons Subproject
  -        $Id: build.xml,v 1.1 2002/02/22 05:56:25 bayard Exp $
  +        $Id: build.xml,v 1.2 2002/02/28 03:06:54 bayard Exp $
   -->
   
   
  @@ -223,7 +223,8 @@
   
   
     <target name="test"  depends="compile.tests,
  -                                test.strings
  +                                test.strings,
  +                                test.numberRange
                                  "
      description="Run all unit test cases">
     </target>
  @@ -234,6 +235,15 @@
       <java classname="${test.runner}" fork="yes"
           failonerror="${test.failonerror}">
         <arg value="org.apache.commons.lang.StringsTest"/>
  +      <classpath refid="test.classpath"/>
  +    </java>
  +  </target>
  +
  +  <target name="test.numberRange" depends="compile.tests">
  +    <echo message="Running NumberRange tests ..."/>
  +    <java classname="${test.runner}" fork="yes"
  +        failonerror="${test.failonerror}">
  +      <arg value="org.apache.commons.lang.NumberRangeTest"/>
         <classpath refid="test.classpath"/>
       </java>
     </target>
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>