diff options
-rwxr-xr-x | source3/script/tests/selftest.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/source3/script/tests/selftest.sh b/source3/script/tests/selftest.sh index 26dd0cbbee..5cec6d6d03 100755 --- a/source3/script/tests/selftest.sh +++ b/source3/script/tests/selftest.sh @@ -254,6 +254,7 @@ SOCKET_WRAPPER_DEFAULT_IFACE=2 export SOCKET_WRAPPER_DEFAULT_IFACE samba3_check_or_start + # ensure any one smbtorture call doesn't run too long # and smbtorture will use 127.0.0.6 as source address by default SOCKET_WRAPPER_DEFAULT_IFACE=6 @@ -292,6 +293,15 @@ START=`date` bin/smbclient $CONFIGURATION -L $SERVER_IP -U% -p 139 | head -2 MAKE_TEST_BINARY="" + MAKE_TEST_BINARY="bin/net" + printf "%s" "GIVING USER ${USERNAME} ADMINISTRATIVE RIGHTS..." + bin/net -s $SERVERCONFFILE sam createbuiltingroup \ + Administrators > /dev/null 2>&1 || exit 1 + bin/net -s $SERVERCONFFILE sam addmem \ + BUILTIN\\Administrators $USERNAME > /dev/null 2>&1 || exit 1 + echo "DONE" + MAKE_TEST_BINARY="" + failed=0 . $SCRIPTDIR/tests_$SUBTESTS.sh |