1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00
samba-mirror/source4/selftest/test_cifs.sh

18 lines
515 B
Bash
Raw Normal View History

#!/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=`$samba4bindir/smbtorture --list | grep "^RAW-" | xargs`
base=`$samba4bindir/smbtorture --list | grep "^BASE-" | xargs`
tests="$base $raw"
for t in $tests; do
plantest "ntvfs/cifs $t" dc $VALGRIND $samba4bindir/smbtorture $TORTURE_OPTIONS $ADDARGS //\$NETBIOSNAME/cifs -U"\$USERNAME"%"\$PASSWORD" $t
done