diff options
Diffstat (limited to 'source4/script/tests')
-rwxr-xr-x | source4/script/tests/test_cifs.sh | 21 | ||||
-rwxr-xr-x | source4/script/tests/tests_all.sh | 1 |
2 files changed, 22 insertions, 0 deletions
diff --git a/source4/script/tests/test_cifs.sh b/source4/script/tests/test_cifs.sh new file mode 100755 index 0000000000..fefa9169dd --- /dev/null +++ b/source4/script/tests/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 //\$SERVER/cifs -U"\$USERNAME"%"\$PASSWORD" $t +done diff --git a/source4/script/tests/tests_all.sh b/source4/script/tests/tests_all.sh index 1d761efea3..95968780cd 100755 --- a/source4/script/tests/tests_all.sh +++ b/source4/script/tests/tests_all.sh @@ -8,6 +8,7 @@ $SRCDIR/script/tests/test_binding_string.sh $SRCDIR/script/tests/test_echo.sh $SRCDIR/script/tests/test_posix.sh + $SRCDIR/script/tests/test_cifs.sh $SRCDIR/script/tests/test_local.sh $SRCDIR/script/tests/test_pidl.sh $SRCDIR/script/tests/test_blackbox.sh $PREFIX/blackbox |