From 7b4f2fad544137db3399e0daa04dd154ba10357d Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Tue, 3 Jan 2012 15:57:40 +1100 Subject: s3-selftest: Add test for rpcclient, including kerberos authentication Some knownfail entries are added for things the currently fail. Andrew Bartlett Signed-off-by: Stefan Metzmacher --- source3/script/tests/test_rpcclient.sh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 source3/script/tests/test_rpcclient.sh (limited to 'source3/script/tests') diff --git a/source3/script/tests/test_rpcclient.sh b/source3/script/tests/test_rpcclient.sh new file mode 100755 index 0000000000..6c293166a2 --- /dev/null +++ b/source3/script/tests/test_rpcclient.sh @@ -0,0 +1,19 @@ +#!/bin/sh + +if [ $# -lt 1 ]; then +cat < +EOF +exit 1; +fi + +KRB5CCNAME=$1 +shift 1 +export KRB5CCNAME +ADDARGS="$*" + +incdir=`dirname $0`/../../../testprogs/blackbox +. $incdir/subunit.sh +testit "rpcclient" $VALGRIND $BINDIR/rpcclient -c 'getusername' $ADDARGS || failed=`expr $failed + 1` + +testok $0 $failed -- cgit