mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
74624bd98d
Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
22 lines
431 B
Bash
Executable File
22 lines
431 B
Bash
Executable File
#!/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
|