[Jboss-cvs] JBossAS SVN: r55133 - branches/Branch_4_0/testsuite

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Aug 3 15:24:03 EDT 2006


Author: bstansberry at jboss.com
Date: 2006-08-03 15:24:02 -0400 (Thu, 03 Aug 2006)
New Revision: 55133

Modified:
   branches/Branch_4_0/testsuite/build.xml
Log:
Run separate tests with BuddyReplication enabled

Modified: branches/Branch_4_0/testsuite/build.xml
===================================================================
--- branches/Branch_4_0/testsuite/build.xml	2006-08-03 19:21:07 UTC (rev 55132)
+++ branches/Branch_4_0/testsuite/build.xml	2006-08-03 19:24:02 UTC (rev 55133)
@@ -1065,7 +1065,7 @@
       <param name="jboss-junit-configuration" value="Default-${jboss-junit-configuration}"/>
     </antcall>
 
-    <echo message="Going to call target tests-clustering-unit for HTTP tests"/>
+    <echo message="Going to call target tests-clustering-unit for HTTP tests (ASYNC, no BR)"/>
 
     <antcall target="tests-clustering-unit">
       <param name="cluster.includes.refid" value="cluster.http.includes"/>
@@ -1077,7 +1077,7 @@
 
     <sleep seconds="4"/>
 
-    <echo message="Going to call target tests-clustering-unit again for FIELD granularity tests"/>
+    <echo message="Going to call target tests-clustering-unit again for FIELD granularity tests (ASYNC, no BR)"/>
 
     <antcall target="tests-clustering-field-configure" inheritRefs="true"/>
 
@@ -1094,9 +1094,11 @@
 
     <sleep seconds="4"/>
 
-    <echo message="Going to call target tests-clustering-unit again with new configuration"/>
+    <echo message="Going to call target tests-clustering-unit again with new configuration (SYNC, no BR)"/>
 
-    <antcall target="tests-clustering-startup-with-config-change"/>
+    <antcall target="tests-clustering-startup-with-config-change">
+       <param name="br.enabled" value="false"/>
+    </antcall>
 
     <server:start name="node0"/>
     <server:start name="node1"/>
@@ -1116,9 +1118,11 @@
 
     <sleep seconds="4"/>
 
-    <echo message="Going to call target tests-clustering-unit again for FIELD granularity tests with new configuration"/>
+    <echo message="Going to call target tests-clustering-unit again for FIELD granularity tests with new configuration (SYNC, no BR)"/>
 
-    <antcall target="tests-clustering-field-startup-with-config-change"/>
+    <antcall target="tests-clustering-field-startup-with-config-change">
+       <param name="br.enabled" value="false"/>
+    </antcall>
 
     <server:start name="node0"/>
     <server:start name="node1"/>
@@ -1131,6 +1135,44 @@
     <server:stop name="node0"/>
     <server:stop name="node1"/>
 
+    <sleep seconds="4"/>
+
+    <echo message="Going to call target tests-clustering-unit again with new configuration (SYNC, with BR)"/>
+
+    <antcall target="tests-clustering-startup-with-config-change">
+       <param name="br.enabled" value="true"/>
+    </antcall>
+
+    <server:start name="node0"/>
+    <server:start name="node1"/>
+
+    <antcall target="tests-clustering-unit">
+      <param name="cluster.includes.refid" value="cluster.http.includes"/>
+      <param name="jboss-junit-configuration" value="BuddyReplEnabled-${jboss-junit-configuration}"/>
+    </antcall>
+
+    <server:stop name="node0"/>
+    <server:stop name="node1"/>
+
+    <sleep seconds="4"/>
+
+    <echo message="Going to call target tests-clustering-unit again for FIELD granularity tests with new configuration (SYNC, with BR)"/>
+
+    <antcall target="tests-clustering-field-startup-with-config-change">
+       <param name="br.enabled" value="true"/>
+    </antcall>
+
+    <server:start name="node0"/>
+    <server:start name="node1"/>
+
+    <antcall target="tests-clustering-unit">
+      <param name="cluster.includes.refid" value="cluster.field.includes"/>
+      <param name="jboss-junit-configuration" value="BuddyReplEnabled-${jboss-junit-configuration}"/>
+    </antcall>
+
+    <server:stop name="node0"/>
+    <server:stop name="node1"/>
+
   </target>
 
   <target name="tests-clustering-configure" unless="${tests.clustering.skip.startup}">
@@ -1151,9 +1193,9 @@
     <create-cluster-node conf="node0" host="${node0}"/>
     <create-cluster-node conf="node1" host="${node1}"/>
 
-    <echo message="Modifying the node0 and node1 Tomcat configuration for REPL_SYNC/UseJK"/>
-    <http-cluster-node-config-change conf="node0"/>
-    <http-cluster-node-config-change conf="node1"/>
+    <echo message="Modifying the node0 and node1 Tomcat configuration for REPL_SYNC/UseJK/BR=${br.enabled}"/>
+    <http-cluster-node-config-change conf="node0" br.enabled="${br.enabled}"/>
+    <http-cluster-node-config-change conf="node1" br.enabled="${br.enabled}"/>
   </target>
 
   <target name="tests-clustering-field-startup-with-config-change" unless="${tests.clustering.skip.startup}">
@@ -1164,9 +1206,9 @@
     <http-cluster-field-node-config-change conf="node0"/>
     <http-cluster-field-node-config-change conf="node1"/>
 
-    <echo message="Modifying the node0 and node1 Tomcat configuration for REPL_SYNC/UseJK"/>
-    <http-cluster-node-config-change conf="node0"/>
-    <http-cluster-node-config-change conf="node1"/>
+    <echo message="Modifying the node0 and node1 Tomcat configuration for REPL_SYNC/UseJK/BR=${br.enabled}"/>
+    <http-cluster-node-config-change conf="node0" br.enabled="${br.enabled}"/>
+    <http-cluster-node-config-change conf="node1" br.enabled="${br.enabled}"/>
   </target>
 
   <!-- Tests of tomcat needing a ssl connector




More information about the jboss-cvs-commits mailing list