[SCM] Samba Shared Repository - branch master updated - release-4-0-0alpha7-1262-g5b33624

Jelmer Vernooij jelmer at samba.org
Fri Apr 24 07:50:30 GMT 2009


The branch, master has been updated
       via  5b33624113781bbe56956e4e09a4860dd507c9ed (commit)
      from  1a3900710192152bebfbc1cdcb0fae724083b42a (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 5b33624113781bbe56956e4e09a4860dd507c9ed
Author: Jelmer Vernooij <jelmer at samba.org>
Date:   Fri Apr 24 09:47:55 2009 +0200

    Rename the top-level LDB test to LOCAL-LDB, so it gets picked up by the
    script that determines the tests to run.

-----------------------------------------------------------------------

Summary of changes:
 source4/torture/config.mk       |   17 +----------------
 source4/torture/ldb/ldb.c       |   15 +++++++++------
 source4/torture/local/config.mk |    4 ++--
 source4/torture/local/local.c   |    1 +
 source4/torture/torture.c       |    1 -
 5 files changed, 13 insertions(+), 25 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source4/torture/config.mk b/source4/torture/config.mk
index 3016478..72747a7 100644
--- a/source4/torture/config.mk
+++ b/source4/torture/config.mk
@@ -110,7 +110,7 @@ PRIVATE_DEPENDENCIES = \
 		RPC_NDR_LSA RPC_NDR_EPMAPPER RPC_NDR_DFS RPC_NDR_FRSAPI RPC_NDR_SPOOLSS \
 		RPC_NDR_SRVSVC RPC_NDR_WKSSVC RPC_NDR_ROT RPC_NDR_DSSETUP \
 		RPC_NDR_REMACT RPC_NDR_OXIDRESOLVER RPC_NDR_NTSVCS WB_HELPER LIBSAMBA-NET \
-		LIBCLI_AUTH POPT_CREDENTIALS TORTURE_LDAP TORTURE_LDB TORTURE_UTIL TORTURE_RAP \
+		LIBCLI_AUTH POPT_CREDENTIALS TORTURE_LDAP TORTURE_UTIL TORTURE_RAP \
 		dcerpc_server service process_model ntvfs SERVICE_SMB RPC_NDR_BROWSER LIBCLI_DRSUAPI
 
 torture_rpc_OBJ_FILES = $(addprefix $(torturesrcdir)/rpc/, \
@@ -199,21 +199,6 @@ TORTURE_LDAP_OBJ_FILES = $(addprefix $(torturesrcdir)/ldap/, common.o basic.o sc
 $(eval $(call proto_header_template,$(torturesrcdir)/ldap/proto.h,$(TORTURE_LDAP_OBJ_FILES:.o=.c)))
 
 #################################
-# Start SUBSYSTEM TORTURE_LDB
-[MODULE::TORTURE_LDB]
-SUBSYSTEM = smbtorture
-OUTPUT_TYPE = MERGED_OBJ
-INIT_FUNCTION = torture_ldb_init
-PRIVATE_DEPENDENCIES = \
-		LDB_WRAP
-# End SUBSYSTEM TORTURE_LDB
-#################################
-
-TORTURE_LDB_OBJ_FILES = $(addprefix $(torturesrcdir)/ldb/, ldb.o)
-
-$(eval $(call proto_header_template,$(torturesrcdir)/ldb/proto.h,$(TORTURE_LDB_OBJ_FILES:.o=.c)))
-
-#################################
 # Start SUBSYSTEM TORTURE_NBT
 [MODULE::TORTURE_NBT]
 SUBSYSTEM = smbtorture
diff --git a/source4/torture/ldb/ldb.c b/source4/torture/ldb/ldb.c
index 193ccc1..d9036dd 100644
--- a/source4/torture/ldb/ldb.c
+++ b/source4/torture/ldb/ldb.c
@@ -28,7 +28,7 @@
 #include "dsdb/samdb/samdb.h"
 #include "param/param.h"
 #include "torture/smbtorture.h"
-#include "torture/ldb/proto.h"
+#include "torture/local/proto.h"
 
 static const char *sid = "S-1-5-21-4177067393-1453636373-93818737";
 static const char *hex_sid = "01040000000000051500000081FDF8F815BBA456718F9705";
@@ -752,9 +752,14 @@ static bool torture_ldb_dn_invalid_extended(struct torture_context *torture)
 	return true;
 }
 
-NTSTATUS torture_ldb_init(void)
+struct torture_suite *torture_ldb(TALLOC_CTX *mem_ctx)
 {
-	struct torture_suite *suite = torture_suite_create(talloc_autofree_context(), "LDB");
+	struct torture_suite *suite = torture_suite_create(mem_ctx, "LDB");
+
+	if (suite == NULL) {
+		return NULL;
+	}
+
 	torture_suite_add_simple_test(suite, "ATTRS", torture_ldb_attrs);
 	torture_suite_add_simple_test(suite, "DN-ATTRS", torture_ldb_dn_attrs);
 	torture_suite_add_simple_test(suite, "DN-EXTENDED", torture_ldb_dn_extended);
@@ -763,7 +768,5 @@ NTSTATUS torture_ldb_init(void)
 
 	suite->description = talloc_strdup(suite, "LDB (samba-specific behaviour) tests");
 
-	torture_register_suite(suite);
-
-	return NT_STATUS_OK;
+	return suite;
 }
diff --git a/source4/torture/local/config.mk b/source4/torture/local/config.mk
index 967e545..5c8c1d5 100644
--- a/source4/torture/local/config.mk
+++ b/source4/torture/local/config.mk
@@ -51,7 +51,7 @@ TORTURE_LOCAL_OBJ_FILES = \
 		$(torturesrcdir)/../auth/credentials/tests/simple.o \
 		$(torturesrcdir)/local/local.o \
 		$(torturesrcdir)/local/dbspeed.o \
-		$(torturesrcdir)/local/torture.o
-
+		$(torturesrcdir)/local/torture.o \
+		$(torturesrcdir)/ldb/ldb.o
 
 $(eval $(call proto_header_template,$(torturesrcdir)/local/proto.h,$(TORTURE_LOCAL_OBJ_FILES:.o=.c)))
diff --git a/source4/torture/local/local.c b/source4/torture/local/local.c
index 6b38cd6..a1b100e 100644
--- a/source4/torture/local/local.c
+++ b/source4/torture/local/local.c
@@ -56,6 +56,7 @@
 	torture_local_torture,
 	torture_local_dbspeed, 
 	torture_local_credentials,
+	torture_ldb,
 	torture_registry,
 	NULL
 };
diff --git a/source4/torture/torture.c b/source4/torture/torture.c
index deae65c..a9ec325 100644
--- a/source4/torture/torture.c
+++ b/source4/torture/torture.c
@@ -50,7 +50,6 @@ _PUBLIC_ int torture_init(void)
 {
 	extern NTSTATUS torture_base_init(void);
 	extern NTSTATUS torture_ldap_init(void);
-	extern NTSTATUS torture_ldb_init(void);
 	extern NTSTATUS torture_local_init(void);
 	extern NTSTATUS torture_nbt_init(void);
 	extern NTSTATUS torture_nbench_init(void);


-- 
Samba Shared Repository


More information about the samba-cvs mailing list