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/11/05 17:45:45 UTC

cvs commit: jakarta-commons/lang build.xml

bayard      2002/11/05 08:45:45

  Modified:    lang     build.xml
  Log:
  Integrated the new functor package
  
  Revision  Changes    Path
  1.5       +11 -2     jakarta-commons/lang/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/lang/build.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- build.xml	12 Sep 2002 21:58:15 -0000	1.4
  +++ build.xml	5 Nov 2002 16:45:45 -0000	1.5
  @@ -153,7 +153,7 @@
   <!-- ========== Unit Test Targets ========================================= -->
   
   
  -  <target name="test"  depends="compile.tests, test.lang, test.exception, test.enum, test.builder"
  +  <target name="test"  depends="compile.tests, test.lang, test.exception, test.enum, test.builder, test.functor"
      description="Run all unit test cases">
       <echo message="Running tests ..."/>
     </target>
  @@ -190,6 +190,15 @@
       <java classname="${test.runner}" fork="yes"
           failonerror="${test.failonerror}">
         <arg value="org.apache.commons.lang.builder.BuilderTestSuite"/>
  +      <classpath refid="test.classpath"/>
  +    </java>
  +  </target>
  +
  +  <target name="test.functor" depends="compile.tests">
  +    <echo message="Running functor package tests ..."/>
  +    <java classname="${test.runner}" fork="yes"
  +        failonerror="${test.failonerror}">
  +      <arg value="org.apache.commons.lang.functor.FunctorTestSuite"/>
         <classpath refid="test.classpath"/>
       </java>
     </target>
  
  
  

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