From: Scott M S. <st...@us...> - 2004-11-12 03:27:48
|
User: starksm Date: 04/11/11 19:27:42 Modified: . Tag: Branch_3_2 build.xml Log: Add a sleep seconds="15" after the cluster node web servers are seen to be up to give the partition time to recognize the nodes. We need a custom test to validate the the cluster membership has the expected count on each node. Revision Changes Path No revision No revision 1.165.2.172 +2 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.171 retrieving revision 1.165.2.172 diff -u -r1.165.2.171 -r1.165.2.172 --- build.xml 11 Nov 2004 03:01:17 -0000 1.165.2.171 +++ build.xml 12 Nov 2004 03:27:39 -0000 1.165.2.172 @@ -6,7 +6,7 @@ <!-- See terms of license at http://www.gnu.org. --> <!-- ============================================================ --> -<!-- $Id: build.xml,v 1.165.2.171 2004/11/11 03:01:17 starksm Exp $ --> +<!-- $Id: build.xml,v 1.165.2.172 2004/11/12 03:27:39 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> <import file="../tools/etc/buildmagic/build-common.xml"/> @@ -611,6 +611,7 @@ </waitfor> <fail message="Timeout waiting for nodes to start" if="cluster.timeout"/> <echo message="Nodes have started, waiting for cluster to stablize..."/> + <sleep seconds="15" /> <!-- Need a custom condition that queries for the node membership == 2 --> <echo message="Going to call target tests-clustering-unit"/> |