r19339: Merge my 4.0-unittest branch. This adds an API for more fine-grained
[Samba.git] / source / script / tests / test_w2k3_file.sh
blobe57fb7c2bd9d1291fc1adb791b4590836ce963c7
1 #!/bin/sh
3 # this runs the file serving tests that are expected to pass with win2003
5 if [ $# -lt 3 ]; then
6 cat <<EOF
7 Usage: test_w2k3_file.sh UNC USERNAME PASSWORD <first> <smbtorture args>
8 EOF
9 exit 1;
12 unc="$1"
13 username="$2"
14 password="$3"
15 start="$4"
16 shift 4
17 ADDARGS="$*"
19 incdir=`dirname $0`
20 . $incdir/test_functions.sh
22 tests="BASE-FDPASS BASE-LOCK "
23 tests="$tests BASE-UNLINK BASE-ATTR"
24 tests="$tests BASE-DIR1 BASE-DIR2 BASE-VUID"
25 tests="$tests BASE-TCON BASE-TCONDEV BASE-RW1"
26 tests="$tests BASE-DENY3 BASE-XCOPY BASE-OPEN BASE-DENYDOS"
27 tests="$tests BASE-DELETE BASE-PROPERTIES BASE-MANGLE"
28 tests="$tests BASE-CHKPATH BASE-SECLEAK BASE-TRANS2"
29 tests="$tests BASE-NTDENY1 BASE-NTDENY2 BASE-RENAME BASE-OPENATTR"
30 tests="$tests RAW-QFILEINFO RAW-SFILEINFO-BUG RAW-SFILEINFO"
31 tests="$tests RAW-LOCK RAW-MKDIR RAW-SEEK RAW-CONTEXT RAW-MUX RAW-OPEN RAW-WRITE"
32 tests="$tests RAW-UNLINK RAW-READ RAW-CLOSE RAW-IOCTL RAW-CHKPATH RAW-RENAME"
33 tests="$tests RAW-EAS RAW-STREAMS RAW-OPLOCK RAW-NOTIFY BASE-DELAYWRITE"
34 # slowest tests last
35 tests="$tests BASE-DENY1 BASE-DENY2"
37 # these tests are known to fail against windows
38 fail="RAW-SEARCH RAW-ACLS RAW-QFSINFO"
40 echo "Skipping tests expected to fail: $fail"
42 failed=0
43 for t in $tests; do
44 if [ ! -z "$start" -a "$start" != $t ]; then
45 continue;
47 start=""
48 name="$t"
49 testit "$name" $VALGRIND bin/smbtorture $TORTURE_OPTIONS $ADDARGS $unc -U"$username"%"$password" $t || failed=`expr $failed + 1`
50 done
52 testok $0 $failed