diff options
author | Stefan Metzmacher <metze@samba.org> | 2007-04-29 20:37:59 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:51:46 -0500 |
commit | e9fe3c40e10accb63d7a2124d3a7e77e499c4209 (patch) | |
tree | bd2c6aeda34a921f42c4dd2cf05c3f4d10eaac58 /source/selftest/test_local.sh | |
parent | b5afec8b828e1aba231501b68aa4196b94a87c32 (diff) | |
download | samba-e9fe3c40e10accb63d7a2124d3a7e77e499c4209.tar.gz |
r22575: move script/tests/ -> selftest/
as discussed with jelmer and abartlet
metze
Diffstat (limited to 'source/selftest/test_local.sh')
-rwxr-xr-x | source/selftest/test_local.sh | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/source/selftest/test_local.sh b/source/selftest/test_local.sh new file mode 100755 index 00000000000..e8bf10c901e --- /dev/null +++ b/source/selftest/test_local.sh @@ -0,0 +1,22 @@ +#!/bin/sh + +local_tests=`bin/smbtorture --list | grep "^LOCAL-" | xargs` + +if [ `uname` = "Linux" ]; then + # testing against the system iconv only makes sense for our 'reference' iconv + # behaviour + local_tests="$local_tests LOCAL-ICONV" +fi + +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 |