From 6c656d8b08e7ad75bd5f2058826a996d467ad5e5 Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Tue, 3 Jul 2007 18:27:06 +0000 Subject: * src/tests/cluster_client.cpp: Cluster client test not yet included in test harness. * src/tests/start_cluster,src/tests/stop_cluster: scripts to start/stop cluster of processes on localhost. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@552941 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/tests/stop_cluster | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 cpp/src/tests/stop_cluster (limited to 'cpp/src/tests/stop_cluster') diff --git a/cpp/src/tests/stop_cluster b/cpp/src/tests/stop_cluster new file mode 100755 index 0000000000..f5db5a4488 --- /dev/null +++ b/cpp/src/tests/stop_cluster @@ -0,0 +1,16 @@ +#!/bin/sh +# Stop brokers on ports listed in cluster.ports + + +PORTS=`cat cluster.ports` +for PORT in $PORTS ; do + ../qpidd -qp $PORT || ERROR="$ERROR $PORT" +done + +if [ -n "$ERROR" ]; then + echo "Errors stopping brokers on ports: $ERROR" + echo $ERROR > cluster.ports + exit 1 +else + rm cluster.ports +fi -- cgit v1.2.1