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:
parent
c1ccaa0cc9
commit
38e5198b11
@ -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=$?
|
||||
|
25
source/script/tests/test_local.sh
Executable file
25
source/script/tests/test_local.sh
Executable 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
|
Loading…
Reference in New Issue
Block a user