You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by bd...@apache.org on 2005/06/10 15:02:09 UTC

svn commit: r189952 - /cocoon/trunk/tools/src/blocks-build.xsl

Author: bdelacretaz
Date: Fri Jun 10 06:02:09 2005
New Revision: 189952

URL: http://svn.apache.org/viewcvs?rev=189952&view=rev
Log:
Selection of a subset of JUnit tests to run (by parameters in build.properties) did not work for blocks, fixed.

Modified:
    cocoon/trunk/tools/src/blocks-build.xsl

Modified: cocoon/trunk/tools/src/blocks-build.xsl
URL: http://svn.apache.org/viewcvs/cocoon/trunk/tools/src/blocks-build.xsl?rev=189952&r1=189951&r2=189952&view=diff
==============================================================================
--- cocoon/trunk/tools/src/blocks-build.xsl (original)
+++ cocoon/trunk/tools/src/blocks-build.xsl Fri Jun 10 06:02:09 2005
@@ -21,7 +21,7 @@
 
   <xsl:template match="/">
     <project default="compile" basedir="." name="blocks">
-      <description>Autogenerated Ant build file that builds blocks.</description>
+      <description>Ant build file generated by blocks-build.xsl to build the Cocoon blocks.</description>
 
       <filter token="Name"                value="${{fullname}}"/>
       <filter token="name"                value="${{fullname}}"/>
@@ -414,8 +414,8 @@
                 <formatter type="xml"/>
                 <batchtest todir="${{build.test.output}}">
                   <fileset dir="${{build.blocks}}/@{{name}}/test">
-                    <include name="**/*TestCase.class"/>
-                    <include name="**/*Test.class"/>
+                    <include name="${{junit.test.include.1}}"/>
+                    <include name="${{junit.test.include.2}}"/>
                     <exclude name="**/AllTest.class"/>
                     <exclude name="**/*$$*Test.class"/>
                     <exclude name="**/Abstract*.class"/>