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 2007/04/26 21:46:14 UTC

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

Author: djd
Date: Thu Apr 26 12:46:13 2007
New Revision: 532841

URL: http://svn.apache.org/viewvc?view=rev&rev=532841
Log:
Fix the junit targets to put the TEST*.xml report files in the specific junit directory.
Was broken by change that ran the tests directly instead of by ant calls.

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?view=diff&rev=532841&r1=532840&r2=532841
==============================================================================
--- db/derby/code/trunk/build.xml (original)
+++ db/derby/code/trunk/build.xml Thu Apr 26 12:46:13 2007
@@ -1709,16 +1709,26 @@
   	       failureproperty="tests.failed">
       <formatter type="xml"/>
   	 	
-<test name="org.apache.derbyTesting.functionTests.tests.jdbcapi.AutoloadTest"/>
-<test name="org.apache.derbyTesting.functionTests.tests.jdbcapi.JDBCDriversEmbeddedTest"/>
-<test name="org.apache.derbyTesting.functionTests.tests.jdbcapi.JDBCDriversClientTest"/>
-<test name="org.apache.derbyTesting.functionTests.tests.jdbcapi.JDBCDriversAllTest"/>
-<test name="org.apache.derbyTesting.functionTests.tests.derbynet._Suite"/>
-<test name="org.apache.derbyTesting.functionTests.tests.tools._Suite"/>
-<test name="org.apache.derbyTesting.functionTests.tests.lang._Suite"/>
-<test name="org.apache.derbyTesting.functionTests.tests.jdbcapi._Suite"/>
-<test name="org.apache.derbyTesting.functionTests.tests.store._Suite"/>
-<test name="org.apache.derbyTesting.functionTests.suites.EncryptionSuite"/>
+<test name="org.apache.derbyTesting.functionTests.tests.jdbcapi.AutoloadTest"
+  	todir="junit_${derby.junit.timestamp}"/>
+<test name="org.apache.derbyTesting.functionTests.tests.jdbcapi.JDBCDriversEmbeddedTest"
+	todir="junit_${derby.junit.timestamp}"/>
+<test name="org.apache.derbyTesting.functionTests.tests.jdbcapi.JDBCDriversClientTest"
+	todir="junit_${derby.junit.timestamp}"/>
+<test name="org.apache.derbyTesting.functionTests.tests.jdbcapi.JDBCDriversAllTest"
+	todir="junit_${derby.junit.timestamp}"/>
+<test name="org.apache.derbyTesting.functionTests.tests.derbynet._Suite"
+	todir="junit_${derby.junit.timestamp}"/>
+<test name="org.apache.derbyTesting.functionTests.tests.tools._Suite"
+  	todir="junit_${derby.junit.timestamp}"/>
+<test name="org.apache.derbyTesting.functionTests.tests.lang._Suite"
+	todir="junit_${derby.junit.timestamp}"/>
+<test name="org.apache.derbyTesting.functionTests.tests.jdbcapi._Suite"
+	todir="junit_${derby.junit.timestamp}"/>
+<test name="org.apache.derbyTesting.functionTests.tests.store._Suite"
+	todir="junit_${derby.junit.timestamp}"/>
+<test name="org.apache.derbyTesting.functionTests.suites.EncryptionSuite"
+	todir="junit_${derby.junit.timestamp}"/>
 
       <classpath>
      	    <pathelement path="${derby.junit.classpath}"/>
@@ -1742,7 +1752,8 @@
   	       failureproperty="tests.failed">
       <formatter type="xml"/>
   	 	
-      <test name="org.apache.derbyTesting.functionTests.tests.jdbc4._Suite"/>
+      <test name="org.apache.derbyTesting.functionTests.tests.jdbc4._Suite"
+      	todir="junit_${derby.junit.timestamp}"/>
         <classpath>
        	    <pathelement path="${derby.junit.classpath}"/>
         </classpath>