mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
22 lines
396 B
Bash
Executable File
22 lines
396 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' -k $ADDARGS || failed=`expr $failed + 1`
|
|
|
|
testok $0 $failed
|