diff options
| author | Alan Conway <aconway@apache.org> | 2008-08-05 16:24:25 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2008-08-05 16:24:25 +0000 |
| commit | 6bed4cf29dda54560af44d16143fa4b24b65245b (patch) | |
| tree | c5752b2219a78e786dbbc6f532ce5d4bcbd5c858 /cpp/src/tests/stop_cluster | |
| parent | bb667cf14d21dc8a873636a9cf5e3017f4aa5503 (diff) | |
| download | qpid-python-6bed4cf29dda54560af44d16143fa4b24b65245b.tar.gz | |
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
Diffstat (limited to 'cpp/src/tests/stop_cluster')
| -rwxr-xr-x | cpp/src/tests/stop_cluster | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/cpp/src/tests/stop_cluster b/cpp/src/tests/stop_cluster new file mode 100755 index 0000000000..9bd05092de --- /dev/null +++ b/cpp/src/tests/stop_cluster @@ -0,0 +1,13 @@ +#!/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 +rm -f cluster.ports + +if [ -n "$ERROR" ]; then + echo "Errors stopping brokers on ports: $ERROR" + exit 1 +fi |
