diff options
author | Stefan Metzmacher <metze@samba.org> | 2005-06-09 09:48:43 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:17:53 -0500 |
commit | 1d0117c5193fec7c5a02909e2700fb6101da380d (patch) | |
tree | 9609216fdcac624434422afe87ad40f3d8dba195 /source4/script/tests/test_local.sh | |
parent | 35314f2427d82c819903087d04e3cd7915b32b36 (diff) | |
download | samba-1d0117c5193fec7c5a02909e2700fb6101da380d.tar.gz samba-1d0117c5193fec7c5a02909e2700fb6101da380d.tar.bz2 samba-1d0117c5193fec7c5a02909e2700fb6101da380d.zip |
r7434: - do local tests step by step for better build-farm output
- fix typo ADDARGS -> ADDARG
metze
(This used to be commit 38e5198b1121725b4f1c9b27ac2f97bee43607fe)
Diffstat (limited to 'source4/script/tests/test_local.sh')
-rwxr-xr-x | source4/script/tests/test_local.sh | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/source4/script/tests/test_local.sh b/source4/script/tests/test_local.sh new file mode 100755 index 0000000000..259864c200 --- /dev/null +++ b/source4/script/tests/test_local.sh @@ -0,0 +1,25 @@ +#!/bin/sh + +local_tests="LOCAL-NTLMSSP LOCAL-ICONV LOCAL-TALLOC LOCAL-MESSAGING LOCAL-IRPC LOCAL-BINDING LOCAL-IDTREE LOCAL-SOCKET" + +if [ $# -lt 0 ]; then +cat <<EOF +Usage: test_local.sh +EOF +exit 1; +fi + +if [ -z "$VALGRIND" ]; then + export MALLOC_CHECK_=2 +fi + +incdir=`dirname $0` +. $incdir/test_functions.sh + +failed=0 +for t in $local_tests; do + name="$t" + testit "$name" $VALGRIND bin/smbtorture ncalrpc: $t "$*" || failed=`expr $failed + 1` +done + +testok $0 $failed |