mirror of
https://github.com/samba-team/samba.git
synced 2025-11-07 12:23:51 +03:00
output in the testsuite rather than just True or False for a set of tests. The aim is to use this for: * known failure lists (run all tests and detect tests that started working or started failing). This would allow us to get rid of the RPC-SAMBA3-* tests * nicer torture output * simplification of the testsuite system * compatibility with other unit testing systems * easier usage of smbtorture (being able to run one test and automatically set up the environment for that) This is still a work-in-progress; expect more updates over the next couple of days.
36 lines
846 B
Bash
Executable File
36 lines
846 B
Bash
Executable File
#!/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
|
|
|
|
testit "nmblookup -U $SERVER $SERVER" bin/nmblookup $TORTURE_OPTIONS -U $SERVER $SERVER || failed=`expr $failed + 1`
|
|
testit "nmblookup $SERVER" bin/nmblookup $TORTURE_OPTIONS $SERVER || failed=`expr $failed + 1`
|
|
|
|
NBT_TESTS="NBT-REGISTER NBT-WINS"
|
|
NBT_TESTS="$NBT_TESTS NBT-WINSREPLICATION"
|
|
# if [ "$TORTURE_QUICK"x != "yes"x ]; then
|
|
# NBT_TESTS="$NBT_TESTS NBT-WINSREPLICATION-OWNED"
|
|
# fi
|
|
NBT_TESTS="$NBT_TESTS NET-API-LOOKUP NET-API-LOOKUPHOST NET-API-LOOKUPPDC"
|
|
|
|
for f in $NBT_TESTS; do
|
|
testit "$f" bin/smbtorture $TORTURE_OPTIONS //$SERVER/_none_ $f || failed=`expr $failed + 1`
|
|
done
|
|
|
|
testok $0 $failed
|