mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
228f342b1f
(This used to be commit 49367e044e
)
29 lines
555 B
Bash
Executable File
29 lines
555 B
Bash
Executable File
#!/bin/sh
|
|
# Blackbox tests for masktest
|
|
# Copyright (C) 2008 Andrew Tridgell
|
|
# based on test_smbclient.sh
|
|
|
|
if [ $# -lt 5 ]; then
|
|
cat <<EOF
|
|
Usage: test_masktest.sh SERVER USERNAME PASSWORD DOMAIN PREFIX
|
|
EOF
|
|
exit 1;
|
|
fi
|
|
|
|
SERVER=$1
|
|
USERNAME=$2
|
|
PASSWORD=$3
|
|
DOMAIN=$4
|
|
PREFIX=$5
|
|
shift 5
|
|
failed=0
|
|
|
|
samba4bindir=`dirname $0`/../../source/bin
|
|
masktest=$samba4bindir/masktest
|
|
|
|
. `dirname $0`/subunit.sh
|
|
|
|
testit "masktest" $VALGRIND $masktest //$SERVER/tmp --num-ops=200 --dieonerror -W "$DOMAIN" -U"$USERNAME%$PASSWORD" $@ || failed=`expr $failed + 1`
|
|
|
|
exit $failed
|