From 5ec52659da8282752535d2ef9f7cb875fcaf93f2 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Wed, 28 Jan 2009 12:19:06 +0100 Subject: [PATCH] s3:test: exit the net rpc registry tests when give_administrative_rights fails Michael --- source3/script/tests/test_net_registry.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/source3/script/tests/test_net_registry.sh b/source3/script/tests/test_net_registry.sh index 5edcb061ee2c..e9f56a2cf2cc 100755 --- a/source3/script/tests/test_net_registry.sh +++ b/source3/script/tests/test_net_registry.sh @@ -361,8 +361,11 @@ take_administrative_rights() if test "x${RPC}" = "xrpc" ; then testit "giving user ${USERNAME} administrative rights" \ - give_administrative_rights || \ - failed=`expr $failed + 1` + give_administrative_rights + if [ "x$?" != "x0" ] ; then + failed=`expr $failed + 1` + testok $0 $failed + fi fi testit "enumerate HKLM" \ -- 2.34.1