mirror of
https://github.com/samba-team/samba.git
synced 2025-01-15 23:24:37 +03:00
ab055fb990
that the DCE/RPC library and interfaces work ok. (This used to be commit d392d6e92b4145106e073ec4410796e3913320c0)
13 lines
368 B
Bash
Executable File
13 lines
368 B
Bash
Executable File
#!/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
|