mirror of
https://github.com/samba-team/samba.git
synced 2025-12-05 12:23:50 +03:00
shfmt -f source3/script/| xargs shfmt -w -p -i 0 -fn Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Guenther Deschner <gd@samba.org>
22 lines
426 B
Bash
Executable File
22 lines
426 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
|