You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@velocity.apache.org by wg...@apache.org on 2007/10/26 17:40:38 UTC

svn commit: r588689 - /velocity/texen/trunk/build/build.xml

Author: wglass
Date: Fri Oct 26 08:40:37 2007
New Revision: 588689

URL: http://svn.apache.org/viewvc?rev=588689&view=rev
Log:
use different task name for Texen super class -- see if this makes Gump errors vanish

Modified:
    velocity/texen/trunk/build/build.xml

Modified: velocity/texen/trunk/build/build.xml
URL: http://svn.apache.org/viewvc/velocity/texen/trunk/build/build.xml?rev=588689&r1=588688&r2=588689&view=diff
==============================================================================
--- velocity/texen/trunk/build/build.xml (original)
+++ velocity/texen/trunk/build/build.xml Fri Oct 26 08:40:37 2007
@@ -538,25 +538,26 @@
 
     </target>
 
-	<target name="test-texen-extendedGenerator">
+  <target name="test-texen-extendedGenerator">
 
-		<taskdef name="texen" classname="org.apache.texen.test.ExtendedTexenTask"
-						 classpathref="test.classpath"/>
+    <!-- use different task name since this is different class than other tests -->
+    <taskdef name="texen2" classname="org.apache.texen.test.ExtendedTexenTask"
+             classpathref="test.classpath"/>
+
+    <texen2
+      contextProperties="${test.dir}/texen/service.props,${test.dir}/texen/additional.props"
+      controlTemplate="Control.vm"
+      outputDirectory="${build.test}/texen"
+      templatePath="${test.dir}/texen/templates"
+      outputFile="report"
+      />
+
+    <java classname="${test.runner}" fork="yes" dir="${app.dir}" failonerror="${test.haltonerror}"
+          classpathref="test.classpath">
+      <arg value="org.apache.texen.TexenTestCase"/>
+    </java>
 
-		<texen
-			contextProperties="${test.dir}/texen/service.props,${test.dir}/texen/additional.props"
-			controlTemplate="Control.vm"
-			outputDirectory="${build.test}/texen"
-			templatePath="${test.dir}/texen/templates"
-			outputFile="report"
-			/>
-
-		<java classname="${test.runner}" fork="yes" dir="${app.dir}" failonerror="${test.haltonerror}"
-					classpathref="test.classpath">
-			<arg value="org.apache.texen.TexenTestCase"/>
-		</java>
-
-	</target>
+  </target>
 
     <!-- ================================================================ -->
     <!-- T E S T   M A N Y F I L E S                                      -->
@@ -570,12 +571,12 @@
 
         <echo message="Checking to see that Texen can generate many files without running out of filehandles."/>
         
-	        <texen
-	          controlTemplate="Control.vm"
-	          outputDirectory="${build.test}/texen-manyfiles"
-	          templatePath="${test.dir}/manyfiles"
-	          outputFile="report"
-	        />
+          <texen
+            controlTemplate="Control.vm"
+            outputDirectory="${build.test}/texen-manyfiles"
+            templatePath="${test.dir}/manyfiles"
+            outputFile="report"
+          />
 
 
     </target>