From 96801c3f63d52ca2f4fd4bf109898daa4b5a3363 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 31 Mar 2008 13:54:39 +0200 Subject: test: add test script for testing "net registry". Michael (This used to be commit fa5968a26b552d7f13574a826e506ed2d6630feb) --- source3/script/tests/tests_all.sh | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'source3/script/tests/tests_all.sh') diff --git a/source3/script/tests/tests_all.sh b/source3/script/tests/tests_all.sh index e2cfad6648..5e215379f7 100755 --- a/source3/script/tests/tests_all.sh +++ b/source3/script/tests/tests_all.sh @@ -42,6 +42,12 @@ ntlm_auth_s3() { || failed=`expr $failed + $?` } +net_registry() { + echo "RUNNING SUBTESTS net_registry" + $SCRIPTDIR/test_net_registry.sh \ + || failed=`expr $failed + $?` +} + posix_s3() { echo "RUNNING SUBTESTS posix_s3" eval "$LIB_PATH_VAR="\$SAMBA4SHAREDDIR:\$$LIB_PATH_VAR"; export $LIB_PATH_VAR" @@ -66,6 +72,7 @@ if test "x$RUNTESTS" = "x" ; then smbclient_s3_encrypted wbinfo_s3 ntlm_auth_s3 + net_registry posix_s3 else for THIS_TEST in $RUNTESTS; do -- cgit