From f5bcf91e220e61b86d232974d616c20e40aef320 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Thu, 12 Apr 2007 00:34:59 +0000 Subject: r22180: Re-add testing of the CIFS backend. Andrew Bartlett (This used to be commit d76afe147ca87f3678b7eb4930096eb6aaa39e6e) --- source4/script/tests/test_cifs.sh | 21 +++++++++++++++++++++ source4/script/tests/tests_all.sh | 1 + 2 files changed, 22 insertions(+) create mode 100755 source4/script/tests/test_cifs.sh (limited to 'source4/script') 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 -- cgit