You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by dj...@apache.org on 2008/02/24 19:36:17 UTC

svn commit: r630657 - /db/derby/code/trunk/build.xml

Author: djd
Date: Sun Feb 24 10:36:14 2008
New Revision: 630657

URL: http://svn.apache.org/viewvc?rev=630657&view=rev
Log:
Fix tabs in build.xml for new targets junit-system-mini

Modified:
    db/derby/code/trunk/build.xml

Modified: db/derby/code/trunk/build.xml
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/build.xml?rev=630657&r1=630656&r2=630657&view=diff
==============================================================================
--- db/derby/code/trunk/build.xml (original)
+++ db/derby/code/trunk/build.xml Sun Feb 24 10:36:14 2008
@@ -1895,34 +1895,33 @@
     and Derby works with the test.
   -->
   <target name="junit-system-mini" depends="junit-init">
-	    <condition property="derby.junit.classpath" value="">
-	      <not>
-	        <isset property="derby.junit.classpath"/>
-	      </not>
-	    </condition>
-	         <!--
-	         Specifying max heap size (maxmemory) for JVMs spawned by this
-	         target, since the default max heap size on most systems is
-	         currently too low for some of the test suites. See DERBY-2988.
-	         -->
-	  	 <junit printsummary="on"
-	           fork="yes" forkmode="perTest"
-	           jvm="${derby.junit.jvm}" maxmemory="512m"
-	           showoutput="yes"
-	           dir="junit_${derby.junit.timestamp}"
-	  	 	   errorproperty="tests.failed"
-	  	       failureproperty="tests.failed">
-	      <sysproperty key="derbyTesting.oldReleasePath" value="${derbyTesting.oldReleasePath}"/>
-	      <formatter type="xml"/>
-	  	 	
-	<test name="org.apache.derbyTesting.system.oe.test.OETest"
-	  	todir="junit_${derby.junit.timestamp}"/>
-
-	      <classpath>
-	     	    <pathelement path="${derby.junit.classpath}"/>
-	      </classpath>
-	    </junit>
-	  </target>
+        <condition property="derby.junit.classpath" value="">
+          <not>
+            <isset property="derby.junit.classpath"/>
+          </not>
+        </condition>
+        <!--
+             Specifying max heap size (maxmemory) for JVMs spawned by this
+             target, since the default max heap size on most systems is
+             currently too low for some of the test suites. See DERBY-2988.
+         -->
+      	 <junit printsummary="on"
+               fork="yes" forkmode="perTest"
+               jvm="${derby.junit.jvm}" maxmemory="512m"
+               showoutput="yes"
+               dir="junit_${derby.junit.timestamp}"
+               errorproperty="tests.failed"
+               failureproperty="tests.failed">
+          <sysproperty key="derbyTesting.oldReleasePath" value="${derbyTesting.oldReleasePath}"/>
+          <formatter type="xml"/>
+  	 	
+    <test name="org.apache.derbyTesting.system.oe.test.OETest"
+        todir="junit_${derby.junit.timestamp}"/>
+          <classpath>
+               <pathelement path="${derby.junit.classpath}"/>
+          </classpath>
+         </junit>
+  </target>
 	  
   <!-- only execute jdbc4 suite if we have a pointer to a 1.6 VM -->
   <target name="junit-jdbc4" if="jdk16" depends="junit-init">
@@ -2010,15 +2009,15 @@
 		<fail if="tests.failed">Tests Failed!</fail>
 	</target>
 
-	<!-- Run the junit-system-mini target with the classpath set to include
-	     the main derby jar files. Requires that the caller have
-	     junit.jar in CLASSPATH due to some bug in ant that is
-	     fixed in version 1.7.
-	-->
-	<target name="junit-system-mini-codeline-jars"
-	    depends="junit-all-codeline-jars-set-properties,junit-system-mini">
-		<fail if="tests.failed">Tests Failed!</fail>
-	</target>	
+    <!-- Run the junit-system-mini target with the classpath set to include
+         the main derby jar files. Requires that the caller have
+         junit.jar in CLASSPATH due to some bug in ant that is
+         fixed in version 1.7.
+    -->
+    <target name="junit-system-mini-codeline-jars"
+        depends="junit-all-codeline-jars-set-properties,junit-system-mini">
+        <fail if="tests.failed">Tests Failed!</fail>
+    </target>	
 	
 	<target name="junit-all-codeline-jars-set-properties" depends="setsanityname">
 		<property name="derby.jar.base" value="${basedir}/jars/${sanity.name}"/>