mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
r8735: added NBT and WINS testing to 'make test' so we will know if it breaks again
This commit is contained in:
parent
83727bf72c
commit
519812a9e8
@ -93,6 +93,7 @@ cat >$CONFFILE<<EOF
|
||||
interfaces = lo*
|
||||
tls enabled = $TLS_ENABLED
|
||||
panic action = $SRCDIR/script/gdb_backtrace %PID% %PROG%
|
||||
wins support = yes
|
||||
|
||||
[tmp]
|
||||
path = $TMPDIR
|
||||
|
23
source/script/tests/test_nbt.sh
Executable file
23
source/script/tests/test_nbt.sh
Executable file
@ -0,0 +1,23 @@
|
||||
#!/bin/sh
|
||||
# test some NBT/WINS operations
|
||||
|
||||
if [ $# -lt 1 ]; then
|
||||
cat <<EOF
|
||||
Usage: test_nbt.sh SERVER
|
||||
EOF
|
||||
exit 1;
|
||||
fi
|
||||
|
||||
SERVER="$1"
|
||||
|
||||
incdir=`dirname $0`
|
||||
. $incdir/test_functions.sh
|
||||
|
||||
SCRIPTDIR=../testprogs/ejs
|
||||
|
||||
PATH=bin:$PATH
|
||||
export PATH
|
||||
|
||||
for f in NBT-REGISTER NBT-WINS; do
|
||||
testit "$f" bin/smbtorture $TORTURE_OPTIONS //$SERVER/_none_ $f || failed=`expr $failed + 1`
|
||||
done
|
@ -1,5 +1,6 @@
|
||||
$SRCDIR/script/tests/test_ejs.sh localhost $USERNAME $PASSWORD || failed=`expr $failed + $?`
|
||||
$SRCDIR/script/tests/test_ldap.sh localhost $USERNAME $PASSWORD || failed=`expr $failed + $?`
|
||||
$SRCDIR/script/tests/test_nbt.sh localhost || failed=`expr $failed + $?`
|
||||
$SRCDIR/script/tests/test_quick.sh //localhost/cifs $USERNAME $PASSWORD "" || failed=`expr $failed + $?`
|
||||
$SRCDIR/script/tests/test_rpc.sh localhost $USERNAME $PASSWORD $DOMAIN || failed=`expr $failed + $?`
|
||||
$SRCDIR/script/tests/test_session_key.sh localhost $USERNAME $PASSWORD $DOMAIN || failed=`expr $failed + $?`
|
||||
|
@ -1,3 +1,5 @@
|
||||
$SRCDIR/script/tests/test_ejs.sh localhost $USERNAME $PASSWORD || failed=`expr $failed + $?`
|
||||
$SRCDIR/script/tests/test_ldap.sh localhost $USERNAME $PASSWORD || failed=`expr $failed + $?`
|
||||
$SRCDIR/script/tests/test_nbt.sh localhost || failed=`expr $failed + $?`
|
||||
$SRCDIR/script/tests/test_quick.sh //localhost/cifs $USERNAME $PASSWORD "" || failed=`expr $failed + $?`
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user