mirror of
https://github.com/samba-team/samba.git
synced 2025-01-17 02:05:21 +03:00
ac5cd254fa
metze (This used to be commit 9aa328fbf6f78c02a1bdeeb125cdb27414c892c0)
17 lines
360 B
Bash
Executable File
17 lines
360 B
Bash
Executable File
#!/bin/sh
|
|
|
|
local_tests=`bin/smbtorture --list | grep "^LOCAL-" | xargs`
|
|
|
|
incdir=`dirname $0`
|
|
. $incdir/test_functions.sh
|
|
|
|
# the local tests don't need smbd
|
|
SMBD_TEST_FIFO=""
|
|
export SMBD_TEST_FIFO
|
|
|
|
for t in $local_tests; do
|
|
plantest "$t" none $VALGRIND bin/smbtorture $TORTURE_OPTIONS ncalrpc: $t "$*"
|
|
done
|
|
|
|
plantest "tdb stress" none $VALGRIND bin/tdbtorture
|