summaryrefslogtreecommitdiff
path: root/cpp/src/tests/stop_cluster
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/tests/stop_cluster')
-rwxr-xr-xcpp/src/tests/stop_cluster13
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