blob: 6c293166a2972f93e4cae686ef0d5424ad3ef0b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/sh
if [ $# -lt 1 ]; then
cat <<EOF
Usage: test_rpcclient.sh ccache binding <rpcclient commands>
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
|