From eabcd5c760c8d3b3e8f6f45a29c19148560f91cd Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Thu, 26 Jun 2008 18:12:12 +0000 Subject: 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 --- cpp/src/tests/ais_check | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'cpp/src/tests/ais_check') diff --git a/cpp/src/tests/ais_check b/cpp/src/tests/ais_check index f16480b7f0..e2d53b5870 100755 --- a/cpp/src/tests/ais_check +++ b/cpp/src/tests/ais_check @@ -23,11 +23,14 @@ EOF exit 0; # A warning, not a failure. fi +# Execute command with the ais group set. +with_ais_group() { + id -nG | grep '\' >/dev/null || { echo "You are not a member of the ais group."; exit 1; } + echo $* | newgrp ais +} + # Run the tests srcdir=`dirname $0` -$srcdir/start_cluster 4 -./ais_test -ret=$? -$srcdir/stop_cluster -exit $ret +with_ais_group ./cluster_test || ERROR=1 +exit $ERROR -- cgit v1.2.1