blob: 76bb4c65e7914543d4e474d66613f262512016c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
# this runs the file serving tests that are expected to pass with the
# current posix ntvfs backend, via the ntvfs cifs proxy
ADDARGS="$*"
incdir=`dirname $0`
. $incdir/test_functions.sh
raw=`bin/smbtorture --list | grep "^RAW-" | xargs`
base=`bin/smbtorture --list | grep "^BASE-" | xargs`
tests="$base $raw"
for t in $tests; do
plantest "ntvfs/cifs $t" dc $VALGRIND bin/smbtorture $TORTURE_OPTIONS $ADDARGS //\$NETBIOSNAME/cifs -U"\$USERNAME"%"\$PASSWORD" $t
done
|