624e968f7bf19fee0eac1af88cf27b40cd36530c
[ira/wip.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 tests="FDPASS LOCK1 LOCK2 LOCK3 LOCK4 LOCK5 LOCK6 LOCK7"
25 #tests="$tests UNLINK BROWSE ATTR TRANS2 MAXFID TORTURE "
26 tests="$tests UNLINK BROWSE ATTR TRANS2 TORTURE "
27 tests="$tests OPLOCK1 OPLOCK2 OPLOCK3"
28 tests="$tests DIR DIR1 TCON TCONDEV RW1 RW2 RW3"
29 tests="$tests OPEN XCOPY RENAME DELETE PROPERTIES W2K"
30 tests="$tests TCON2 IOCTL CHKPATH FDSESS LOCAL-SUBSTITUTE CHAIN1"
31 tests="$tests GETADDRINFO"
32
33 skipped1="RANDOMIPC NEGNOWAIT NBENCH ERRMAPEXTRACT TRANS2SCAN NTTRANSSCAN"
34 skipped2="DENY1 DENY2 OPENATTR CASETABLE EATEST"
35 skipped3="MANGLE UTABLE PIPE_NUMBER"
36 echo "Skipping the following tests:"
37 echo "$skipped1"
38 echo "$skipped2"
39 echo "$skipped3"
40
41 if test "x$SMBTORTURE_S3_SUBTESTS" != "x" ; then
42     tests="$SMBTORTURE_S3_SUBTESTS"
43 fi
44
45 failed=0
46 for t in $tests; do
47     if [ ! -z "$start" -a "$start" != $t ]; then
48         continue;
49     fi
50     start=""
51     name="$t"
52     testit "$name" $VALGRIND $BINDIR/smbtorture $unc -U"$username"%"$password" $ADDARGS $t || failed=`expr $failed + 1`
53 done
54
55 testok $0 $failed