mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
61 lines
1.6 KiB
Bash
Executable File
61 lines
1.6 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
# this runs the file serving tests that are expected to pass with samba3
|
|
|
|
if [ $# -lt 3 ]; then
|
|
cat <<EOF
|
|
Usage: test_smbtorture_s3.sh UNC USERNAME PASSWORD <first> <smbtorture args>
|
|
EOF
|
|
exit 1;
|
|
fi
|
|
|
|
unc="$1"
|
|
username="$2"
|
|
password="$3"
|
|
start="$4"
|
|
shift 4
|
|
ADDARGS="$*"
|
|
|
|
test x"$TEST_FUNCTIONS_SH" != x"INCLUDED" && {
|
|
incdir=`dirname $0`
|
|
. $incdir/test_functions.sh
|
|
}
|
|
|
|
SMB_CONF_PATH="$CONFFILE"
|
|
export SMB_CONF_PATH
|
|
|
|
tests="FDPASS LOCK1 LOCK2 LOCK3 LOCK4 LOCK5 LOCK6 LOCK7 LOCK9"
|
|
#tests="$tests UNLINK BROWSE ATTR TRANS2 MAXFID TORTURE "
|
|
tests="$tests UNLINK BROWSE ATTR TRANS2 TORTURE "
|
|
tests="$tests OPLOCK1 OPLOCK2 OPLOCK3 STREAMERROR"
|
|
tests="$tests DIR DIR1 TCON TCONDEV RW1 RW2 RW3"
|
|
tests="$tests OPEN XCOPY RENAME DELETE PROPERTIES W2K"
|
|
tests="$tests TCON2 IOCTL CHKPATH FDSESS LOCAL-SUBSTITUTE CHAIN1"
|
|
tests="$tests GETADDRINFO POSIX UID-REGRESSION-TEST SHORTNAME-TEST"
|
|
tests="$tests LOCAL-BASE64 LOCAL-GENCACHE POSIX-APPEND"
|
|
tests="$tests LOCAL-dom_sid_parse"
|
|
|
|
skipped1="RANDOMIPC NEGNOWAIT NBENCH ERRMAPEXTRACT TRANS2SCAN NTTRANSSCAN"
|
|
skipped2="DENY1 DENY2 OPENATTR CASETABLE EATEST"
|
|
skipped3="MANGLE UTABLE PIPE_NUMBER"
|
|
echo "Skipping the following tests:"
|
|
echo "$skipped1"
|
|
echo "$skipped2"
|
|
echo "$skipped3"
|
|
|
|
if test "x$SMBTORTURE_S3_SUBTESTS" != "x" ; then
|
|
tests="$SMBTORTURE_S3_SUBTESTS"
|
|
fi
|
|
|
|
failed=0
|
|
for t in $tests; do
|
|
if [ ! -z "$start" -a "$start" != $t ]; then
|
|
continue;
|
|
fi
|
|
start=""
|
|
name="$t"
|
|
testit "$name" $VALGRIND $BINDIR/smbtorture $unc -U"$username"%"$password" -l"$PREFIX_ABS"/tmp $ADDARGS $t || failed=`expr $failed + 1`
|
|
done
|
|
|
|
testok $0 $failed
|