summaryrefslogtreecommitdiff
path: root/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
commiteabcd5c760c8d3b3e8f6f45a29c19148560f91cd (patch)
treea3f7e152d7ef07d8507136bb35f8a814b1db65c5 /cpp/src/tests/stop_cluster
parenta705fb49d4571b3b22ffd597c07e42a1b43e9322 (diff)
downloadqpid-python-eabcd5c760c8d3b3e8f6f45a29c19148560f91cd.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/qpid@671969 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/stop_cluster')
-rwxr-xr-xcpp/src/tests/stop_cluster14
1 files changed, 0 insertions, 14 deletions
diff --git a/cpp/src/tests/stop_cluster b/cpp/src/tests/stop_cluster
deleted file mode 100755
index 6afcb527e5..0000000000
--- a/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