mirror of
https://github.com/samba-team/samba.git
synced 2025-01-21 18:04:06 +03:00
477ecbd498
(This used to be commit 022d5a43cedeb5cca7e4cf3424963e2180ec1f2f)
14 lines
286 B
Bash
Executable File
14 lines
286 B
Bash
Executable File
#!/bin/sh
|
|
# run a quick set of filesystem tests
|
|
|
|
ADDARGS="$*"
|
|
|
|
incdir=`dirname $0`
|
|
. $incdir/test_functions.sh
|
|
|
|
tests="BASE-RW1"
|
|
|
|
for t in $tests; do
|
|
plantest "$t" dc $VALGRIND $samba4bindir/smbtorture $TORTURE_OPTIONS $ADDARGS //\$SERVER/simple -U"\$USERNAME"%"\$PASSWORD" $t
|
|
done
|