You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@velocity.apache.org by ge...@apache.org on 2001/03/19 06:22:02 UTC

cvs commit: jakarta-velocity/build testcases.xml

geirm       01/03/18 21:22:02

  Modified:    build    testcases.xml
  Log:
  Added the ExternalLoggerTest to the testsuite
  
  Revision  Changes    Path
  1.2       +13 -1     jakarta-velocity/build/testcases.xml
  
  Index: testcases.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/build/testcases.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- testcases.xml	2001/03/19 02:42:29	1.1
  +++ testcases.xml	2001/03/19 05:22:02	1.2
  @@ -32,7 +32,8 @@
                                      test-cpload,
                                      test-contextsafety,
                                      test-anakia,
  -                                   test-configuration
  +                                   test-configuration,
  +                                   test-externallogger
                                      "/>
   
     <target name="test-template">
  @@ -154,6 +155,17 @@
               dir="${test.home}/templates/results"/>
       <delete dir="${test.home}/anakia/results" quiet="true"/>
     </target>
  +  
  +  <target name="test-externallogger">
  +    <echo message="Running external logger tests..."/>
  +
  +    <java classname="${velocity.test.runner}" fork="yes">
  +      <arg value="org.apache.velocity.test.ExternalLoggerTest"/>
  +      <classpath>
  +        <path refid="classpath"/>
  +      </classpath>
  +    </java>
  +   </target>
   
   </project>