[jboss-cvs] JBossAS SVN: r91649 - trunk/testsuite/imports/config.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Jul 24 16:23:02 EDT 2009


Author: pgier
Date: 2009-07-24 16:23:02 -0400 (Fri, 24 Jul 2009)
New Revision: 91649

Modified:
   trunk/testsuite/imports/config/tests-clustering.xml
Log:
[JBBUILD-535] Add dependencies on init where the <server> task is used.

Modified: trunk/testsuite/imports/config/tests-clustering.xml
===================================================================
--- trunk/testsuite/imports/config/tests-clustering.xml	2009-07-24 18:53:55 UTC (rev 91648)
+++ trunk/testsuite/imports/config/tests-clustering.xml	2009-07-24 20:23:02 UTC (rev 91649)
@@ -138,7 +138,7 @@
   </target>
    
   <!-- Depending on the value of the ${jboss-junit-configuration} variable, uses different JGroups stacks -->
-  <target name="tests-clustering"
+  <target name="tests-clustering" depends="init"
     description="Execute clustering tests requiring two nodes.">
 
     <!-- If configuration values weren't passed in, set them to defaults now -->
@@ -484,7 +484,7 @@
       
    </target>
 
-   <target name="one-cluster-test" if="test">
+   <target name="one-cluster-test" if="test" depends="init">
 
     <property name="jboss-junit-configuration" value="udp"/>
 
@@ -507,7 +507,7 @@
     <server:stop name="cluster-${jboss-junit-configuration}-1"/>
    </target>
 
-   <target name="one-cluster-test-field" if="test">
+   <target name="one-cluster-test-field" if="test" depends="init">
 
     <property name="jboss-junit-configuration" value="udp"/>
 
@@ -531,7 +531,7 @@
     <server:stop name="cluster-field-${jboss-junit-configuration}-1"/>
    </target>
 
-   <target name="one-cluster-test-br" if="test">
+   <target name="one-cluster-test-br" if="test" depends="init">
 
     <property name="jboss-junit-configuration" value="udp"/>
 
@@ -555,7 +555,7 @@
     <server:stop name="cluster-${jboss-junit-configuration}-BR-1"/>
    </target>
 
-   <target name="one-cluster-test-field-br" if="test">
+   <target name="one-cluster-test-field-br" if="test" depends="init">
 
     <property name="jboss-junit-configuration" value="udp"/>
 
@@ -581,7 +581,7 @@
    </target>
 
   <!-- Runs only the non-http tests -->
-  <target name="tests-clustering-non-http">
+  <target name="tests-clustering-non-http" depends="init">
 
    <property name="jboss-junit-configuration" value="udp"/>
 
@@ -604,7 +604,7 @@
   </target>
 
   <!-- Runs only the basic http tests (ASYNC, no BR) -->
-  <target name="tests-clustering-http">
+  <target name="tests-clustering-http" depends="init">
 
    <property name="jboss-junit-configuration" value="udp"/>
 
@@ -626,7 +626,7 @@
   </target>
 
   <!-- Runs only the basic http tests (ASYNC, with BR) -->
-  <target name="tests-clustering-http-br">
+  <target name="tests-clustering-http-br" depends="init">
 
   	<property name="jboss-junit-configuration" value="udp"/>
 
@@ -649,7 +649,7 @@
   </target>
 
   <!-- Runs only the basic field tests (ASYNC, no BR) -->
-  <target name="tests-clustering-field">
+  <target name="tests-clustering-field" depends="init">
 
    <property name="jboss-junit-configuration" value="udp"/>
 
@@ -673,7 +673,7 @@
   </target>
 
   <!-- Runs only the basic field tests (SYNC, with BR) -->
-  <target name="tests-clustering-field-br">
+  <target name="tests-clustering-field-br" depends="init">
 
    <property name="jboss-junit-configuration" value="udp"/>
 




More information about the jboss-cvs-commits mailing list