summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/tests/stop_cluster
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2008-06-26 18:12:12 +0000
committerAlan Conway <aconway@apache.org>2008-06-26 18:12:12 +0000
commit8eafbcc7821ea6a6a6976e06fe2c6810c9767e2b (patch)
tree2439a2a981657e4b73d0e1c8c5ca6f12323f15a9 /qpid/cpp/src/tests/stop_cluster
parent05194376a430592ddabb2657431ecc4442c3ab45 (diff)
downloadqpid-python-8eafbcc7821ea6a6a6976e06fe2c6810c9767e2b.tar.gz
Consolidated cluster tests in cluster_test.cpp
Improvements to BrokerFixture for testing. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@671969 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/stop_cluster')
-rwxr-xr-xqpid/cpp/src/tests/stop_cluster14
1 files changed, 0 insertions, 14 deletions
diff --git a/qpid/cpp/src/tests/stop_cluster b/qpid/cpp/src/tests/stop_cluster
deleted file mode 100755
index 6afcb527e5..0000000000
--- a/qpid/cpp/src/tests/stop_cluster
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/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