diff options
| author | Alan Conway <aconway@apache.org> | 2007-07-03 18:27:06 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2007-07-03 18:27:06 +0000 |
| commit | 6c656d8b08e7ad75bd5f2058826a996d467ad5e5 (patch) | |
| tree | 258b5248e7b861c84520d3de7dd3bb52ab11e163 /cpp/src/tests/start_cluster | |
| parent | 84856db9f9312ba65f82a129d7f2761ad80d83fc (diff) | |
| download | qpid-python-6c656d8b08e7ad75bd5f2058826a996d467ad5e5.tar.gz | |
* 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
Diffstat (limited to 'cpp/src/tests/start_cluster')
| -rwxr-xr-x | cpp/src/tests/start_cluster | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/cpp/src/tests/start_cluster b/cpp/src/tests/start_cluster new file mode 100755 index 0000000000..c2806bb225 --- /dev/null +++ b/cpp/src/tests/start_cluster @@ -0,0 +1,19 @@ +#!/bin/sh +# Start a cluster of brokers on local host. +# Print the cluster's URL. +# + +test -f cluster.ports && { echo "cluster.ports file already exists" ; exit 1; } +test -z "$*" && { echo "Usage: $0 cluster-size [options]"; exit 1; } + +SIZE=$1 +shift +OPTS=$* + +for (( i=0; i<SIZE; ++i )); do + PORT=`../qpidd -dp0 --log.output=broker$i.log $OPTS` || exit 1 + PORTS="$PORT $PORTS" +done +echo $PORTS > cluster.ports + + |
