1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

r7434: - do local tests step by step for better build-farm output

- fix typo ADDARGS -> ADDARG

metze
This commit is contained in:
Stefan Metzmacher 2005-06-09 09:48:43 +00:00 committed by Gerald (Jerry) Carter
parent c1ccaa0cc9
commit 38e5198b11
2 changed files with 27 additions and 2 deletions

View File

@ -46,7 +46,7 @@ EOF
ADDARG="-s $CONFFILE"
if [ x"$RUN_FROM_BUILD_FARM" = x"yes" ];then
ADDARGS="$ADDARGS --option=\"torture:progress=no\""
ADDARG="$ADDARG --option=\"torture:progress=no\""
fi
SMBD_TEST_FIFO="$PREFIX/smbd_test.fifo"
@ -70,7 +70,7 @@ START=`date`
$SRCDIR/script/tests/test_binding_string.sh localhost $USERNAME $PASSWORD $DOMAIN $ADDARG || failed=`expr $failed + $?`
$SRCDIR/script/tests/test_echo.sh localhost $USERNAME $PASSWORD $DOMAIN $ADDARG || failed=`expr $failed + $?`
$SRCDIR/script/tests/test_posix.sh //localhost/tmp $USERNAME $PASSWORD "" $ADDARG || failed=`expr $failed + $?`
$SRCDIR/bin/smbtorture $ADDARG ncalrpc: LOCAL-* || failed=`expr $failed + 1`
$SRCDIR/script/tests/test_local.sh $ADDARG || failed=`expr $failed + $?`
exit $failed
) 9>$SMBD_TEST_FIFO
failed=$?

View File

@ -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