summaryrefslogtreecommitdiffstats
path: root/source3/script/tests/test_smbclient_krb5.sh
blob: 98fa7890b3c532076b4e7282752ea4459ce54df5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh

if [ $# -lt 1 ]; then
	cat <<EOF
Usage: test_smbclient_krb5.sh ccache smbclient3 server <smbclient args>
EOF
	exit 1
fi

KRB5CCNAME=$1
export KRB5CCNAME
SMBCLIENT3=$2
SERVER=$3
shift 3
ADDARGS="$*"

incdir=$(dirname $0)/../../../testprogs/blackbox
. $incdir/subunit.sh
testit "smbclient" $VALGRIND $SMBCLIENT3 //$SERVER/tmp -c 'ls' --use-krb5-ccache=$KRB5CCNAME $ADDARGS || failed=$(expr $failed + 1)

testok $0 $failed