From 6bed4cf29dda54560af44d16143fa4b24b65245b Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Tue, 5 Aug 2008 16:24:25 +0000 Subject: Fix sporadic shutdown hang in clustered broker. Add start|stop_cluster test scripts git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@682774 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/tests/start_cluster | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 cpp/src/tests/start_cluster (limited to 'cpp/src/tests/start_cluster') diff --git a/cpp/src/tests/start_cluster b/cpp/src/tests/start_cluster new file mode 100755 index 0000000000..e399d213dc --- /dev/null +++ b/cpp/src/tests/start_cluster @@ -0,0 +1,23 @@ +#!/bin/sh +# Start a cluster of brokers on local host, put the list of ports for cluster members in cluster.ports +# +echo $1 | grep '^[0-9][0-9]*$' > /dev/null || { echo "Usage: $0 cluster-size [options]"; exit 1; } + +# Execute command with the ais group set. +with_ais_group() { + id -nG | grep '\' >/dev/null || { echo "You are not a member of the ais group."; exit 1; } + echo $* | newgrp ais +} + +test -f cluster.ports && { echo "cluster.ports file already exists" ; exit 1; } +rm -f cluster*.log +SIZE=$1; shift +CLUSTER=`pwd` # Cluster name=pwd, avoid clashes. + +for (( i=0; i> cluster.ports +done + + -- cgit v1.2.1