mirror of
https://github.com/samba-team/samba.git
synced 2024-12-28 07:21:54 +03:00
1c188069a1
(This used to be commit d5a3ebef36
)
19 lines
541 B
Bash
Executable File
19 lines
541 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# this runs the file serving tests that are expected to pass with the
|
|
# current posix ntvfs backend
|
|
|
|
ADDARGS="$*"
|
|
|
|
incdir=`dirname $0`
|
|
. $incdir/test_functions.sh
|
|
|
|
smb2=`$samba4bindir/smbtorture --list | grep "^SMB2-" | xargs`
|
|
raw=`$samba4bindir/smbtorture --list | grep "^RAW-" | xargs`
|
|
base=`$samba4bindir/smbtorture --list | grep "^BASE-" | xargs`
|
|
tests="$base $raw $smb2"
|
|
|
|
for t in $tests; do
|
|
plantest "$t" dc $VALGRIND $samba4bindir/smbtorture $TORTURE_OPTIONS $ADDARGS //\$SERVER/tmp -U"\$USERNAME"%"\$PASSWORD" $t
|
|
done
|