1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-20 08:23:50 +03:00
Files
samba-mirror/source/selftest/test_posix.sh
Stefan Metzmacher e9fe3c40e1 r22575: move script/tests/ -> selftest/
as discussed with jelmer and abartlet

metze
2007-10-10 14:51:46 -05:00

23 lines
581 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
if [ ! -z "$start" -a "$start" != $t ]; then
continue;
fi
start=""
plantest "$t" dc $VALGRIND bin/smbtorture $TORTURE_OPTIONS $ADDARGS //\$SERVER/tmp -U"\$USERNAME"%"\$PASSWORD" $t
done