blob: 3532cba18043a72ca35a9890ca49b8aa42172a8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/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
|