[jboss-cvs] JBoss Messaging SVN: r5298 - branches/Branch_1_4/tests.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Nov 6 22:52:11 EST 2008


Author: clebert.suconic at jboss.com
Date: 2008-11-06 22:52:10 -0500 (Thu, 06 Nov 2008)
New Revision: 5298

Modified:
   branches/Branch_1_4/tests/build.properties
   branches/Branch_1_4/tests/build.xml
Log:
Creating a new property default.database, and allowing defining it on the build.properties

Modified: branches/Branch_1_4/tests/build.properties
===================================================================
--- branches/Branch_1_4/tests/build.properties	2008-11-07 03:50:28 UTC (rev 5297)
+++ branches/Branch_1_4/tests/build.properties	2008-11-07 03:52:10 UTC (rev 5298)
@@ -3,5 +3,4 @@
 #
 
 #test.bind.address=192.168.1.104
-
-
+default.database=mysql

Modified: branches/Branch_1_4/tests/build.xml
===================================================================
--- branches/Branch_1_4/tests/build.xml	2008-11-07 03:50:28 UTC (rev 5297)
+++ branches/Branch_1_4/tests/build.xml	2008-11-07 03:52:10 UTC (rev 5298)
@@ -49,6 +49,9 @@
 	<!-- ======================================================================================== -->
 	<!-- Configuration                                                                            -->
 	<!-- ======================================================================================== -->
+    
+	
+	<property name="default.database" value="mysql"/>
 
 	<property file="build.properties" />
 
@@ -65,19 +68,19 @@
         Functional tests.
    -->
 
-	<property name="functional.tests.database" value="mysql" />
+	<property name="functional.tests.database" value="${default.database}" />
 
 	<!--
         Stress tests.
    -->
 
-	<property name="stress.tests.database" value="mysql" />
+	<property name="stress.tests.database" value="${default.database}" />
 
 	<!-- replace that to make it easier to run a specific test -->
 	<property name="test-mask" value="*Test" />
 
 	<!-- Clustering tests -->
-	<property name="clustering.tests.database" value="mysql" />
+	<property name="clustering.tests.database" value="${default.database}" />
 
 	<!--
         Default remoting configuration (must be overrided by tasks that need it set otherwise).




More information about the jboss-cvs-commits mailing list