blob: 1721c31b0261a4fd9f0fd0175b846f540442d7ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
# add tests to this list as they start passing, so we test
# that they stay passing
incdir=`dirname $0`
. $incdir/test_functions.sh
tests=`$samba4bindir/smbtorture --list | grep ^NET-`
for t in $tests; do
plantest "$t" dc $VALGRIND $samba4bindir/smbtorture $TORTURE_OPTIONS "\$SERVER[$VALIDATE]" -U"\$USERNAME"%"\$PASSWORD" -W "\$DOMAIN" $t "$*"
done
|