1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 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