You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ddlutils-dev@db.apache.org by mv...@apache.org on 2006/01/04 01:39:56 UTC

svn commit: r365781 - /db/ddlutils/trunk/build.xml

Author: mvdb
Date: Tue Jan  3 16:39:53 2006
New Revision: 365781

URL: http://svn.apache.org/viewcvs?rev=365781&view=rev
Log:
Adding mysql to the build for now..

Modified:
    db/ddlutils/trunk/build.xml

Modified: db/ddlutils/trunk/build.xml
URL: http://svn.apache.org/viewcvs/db/ddlutils/trunk/build.xml?rev=365781&r1=365780&r2=365781&view=diff
==============================================================================
--- db/ddlutils/trunk/build.xml (original)
+++ db/ddlutils/trunk/build.xml Tue Jan  3 16:39:53 2006
@@ -239,6 +239,22 @@
   </target>
 
   <!-- ================================================================== -->
+  <!-- Runs the test cases against AxionDB                                -->
+  <!-- ================================================================== -->
+  <target name="junit-mysql"
+          description="Runs the test cases against mysql">
+  	<condition property="jdbc.properties.file" value="${test.profile.directory}/${profile}/jdbc.properties.mysql">
+  		<isset property="profile"/>
+  	</condition>
+  	<condition property="jdbc.properties.file" value="/jdbc.properties.mysql">
+  		<not>
+    		<isset property="jdbc.properties.file"/>
+  	    </not>
+  	</condition>
+    <antcall target="-junit-internal"/>
+  </target>
+
+  <!-- ================================================================== -->
   <!-- Runs the test cases against PostgreSQL                             -->
   <!-- ================================================================== -->
   <target name="junit-postgresql"