mirror of
https://github.com/samba-team/samba.git
synced 2024-12-31 17:18:04 +03:00
1e84e4026e
as discussed with jelmer and abartlet
metze
(This used to be commit e9fe3c40e1
)
15 lines
293 B
Bash
Executable File
15 lines
293 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
|
|
name="$t"
|
|
plantest "$name" dc $VALGRIND bin/smbtorture $TORTURE_OPTIONS $ADDARGS //\$SERVER/simple -U"\$USERNAME"%"\$PASSWORD" $t
|
|
done
|