diff options
Diffstat (limited to 'source4/selftest/test_cifs.sh')
-rwxr-xr-x | source4/selftest/test_cifs.sh | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/source4/selftest/test_cifs.sh b/source4/selftest/test_cifs.sh new file mode 100755 index 0000000000..2bf3c4a5b1 --- /dev/null +++ b/source4/selftest/test_cifs.sh @@ -0,0 +1,21 @@ +#!/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 $smb2" + +for t in $tests; do + if [ ! -z "$start" -a "$start" != $t ]; then + continue; + fi + start="" + plantest "ntvfs/cifs $t" dc $VALGRIND bin/smbtorture $TORTURE_OPTIONS $ADDARGS //\$NETBIOSNAME/cifs -U"\$USERNAME"%"\$PASSWORD" $t +done |