Add delete-ln test now we can correctly delete hardlinks.
[bbaumbach/samba-autobuild/.git] / source3 / script / tests / test_smbtorture_s3.sh
1 #!/bin/sh
2
3 # this runs the file serving tests that are expected to pass with samba3
4
5 if [ $# -lt 3 ]; then
6 cat <<EOF
7 Usage: test_smbtorture_s3.sh UNC USERNAME PASSWORD <first> <smbtorture args>
8 EOF
9 exit 1;
10 fi
11
12 unc="$1"
13 username="$2"
14 password="$3"
15 start="$4"
16 shift 4
17 ADDARGS="$*"
18
19 test x"$TEST_FUNCTIONS_SH" != x"INCLUDED" && {
20 incdir=`dirname $0`
21 . $incdir/test_functions.sh
22 }
23
24 SMB_CONF_PATH="$CONFFILE"
25 export SMB_CONF_PATH
26
27 tests="FDPASS LOCK1 LOCK2 LOCK3 LOCK4 LOCK5 LOCK6 LOCK7 LOCK9"
28 #tests="$tests UNLINK BROWSE ATTR TRANS2 MAXFID TORTURE "
29 tests="$tests UNLINK BROWSE ATTR TRANS2 TORTURE "
30 tests="$tests OPLOCK1 OPLOCK2 OPLOCK3 OPLOCK4 STREAMERROR"
31 tests="$tests DIR DIR1 DIR-CREATETIME TCON TCONDEV RW1 RW2 RW3 RW-SIGNING"
32 tests="$tests OPEN XCOPY RENAME DELETE DELETE-LN PROPERTIES W2K"
33 tests="$tests TCON2 IOCTL CHKPATH FDSESS LOCAL-SUBSTITUTE CHAIN1"
34 tests="$tests GETADDRINFO POSIX UID-REGRESSION-TEST SHORTNAME-TEST"
35 tests="$tests LOCAL-BASE64 LOCAL-GENCACHE POSIX-APPEND"
36 tests="$tests LOCAL-string_to_sid"
37
38 skipped1="RANDOMIPC NEGNOWAIT NBENCH ERRMAPEXTRACT TRANS2SCAN NTTRANSSCAN"
39 skipped2="DENY1 DENY2 OPENATTR CASETABLE EATEST"
40 skipped3="MANGLE UTABLE PIPE_NUMBER"
41 echo "Skipping the following tests:"
42 echo "$skipped1"
43 echo "$skipped2"
44 echo "$skipped3"
45
46 if test "x$SMBTORTURE_S3_SUBTESTS" != "x" ; then
47     tests="$SMBTORTURE_S3_SUBTESTS"
48 fi
49
50 failed=0
51 for t in $tests; do
52     if [ ! -z "$start" -a "$start" != $t ]; then
53         continue;
54     fi
55     start=""
56     name="$t"
57     testit "$name" $VALGRIND $BINDIR/smbtorture $unc -U"$username"%"$password" $ADDARGS $t || failed=`expr $failed + 1`
58 done
59
60 testok $0 $failed