mirror of
https://github.com/samba-team/samba.git
synced 2024-12-28 07:21:54 +03:00
b2c6dd7c89
(This used to be commit 85a8c105a4
)
14 lines
299 B
Bash
Executable File
14 lines
299 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 "ntvfs/simple $t" dc $VALGRIND $samba4bindir/smbtorture $TORTURE_OPTIONS $ADDARGS //\$SERVER/simple -U"\$USERNAME"%"\$PASSWORD" $t
|
|
done
|