mirror of
https://github.com/samba-team/samba.git
synced 2025-01-10 01:18:15 +03:00
c01213471f
Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
22 lines
423 B
Bash
Executable File
22 lines
423 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ $# -lt 1 ]; then
|
|
cat <<EOF
|
|
Usage: test_smbclient.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
|