1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-17 02:05:21 +03:00
samba-mirror/source4/selftest/test_posix.sh
Jelmer Vernooij e1ecb353a5 r24707: Remove some more cruft from the test list generation code.
(This used to be commit 76dddbdb519e2ff5384cb931cd24d6763985c5b2)
2007-10-10 15:02:52 -05:00

19 lines
501 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=`bin/smbtorture --list | grep "^SMB2-" | xargs`
raw=`bin/smbtorture --list | grep "^RAW-" | xargs`
base=`bin/smbtorture --list | grep "^BASE-" | xargs`
tests="$base $raw $smb2"
for t in $tests; do
plantest "$t" dc $VALGRIND bin/smbtorture $TORTURE_OPTIONS $ADDARGS //\$SERVER/tmp -U"\$USERNAME"%"\$PASSWORD" $t
done