From ea500fbdaef1dd2994c060d32b94c6ea114a1a07 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 20 Feb 2007 14:39:13 +0000 Subject: r21463: add a LDAP-UPTODATEVECTOR test, it shows that the "replUpToDateVector" isn't updated by originating changes, and that there's no entry for the local dsa invocation_id metze (This used to be commit a9b757dddc496b705d04ee73f52b7f4f16e972e9) --- source4/torture/ldap/common.c | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'source4/torture/ldap/common.c') diff --git a/source4/torture/ldap/common.c b/source4/torture/ldap/common.c index 071f0faa2d..ebf302ad09 100644 --- a/source4/torture/ldap/common.c +++ b/source4/torture/ldap/common.c @@ -101,17 +101,14 @@ NTSTATUS torture_ldap_close(struct ldap_connection *conn) NTSTATUS torture_ldap_init(void) { - struct torture_suite *suite = torture_suite_create( - talloc_autofree_context(), - "LDAP"); - torture_suite_add_simple_test(suite, "BENCH-CLDAP", - torture_bench_cldap); + struct torture_suite *suite = torture_suite_create(talloc_autofree_context(), "LDAP"); + torture_suite_add_simple_test(suite, "BENCH-CLDAP", torture_bench_cldap); torture_suite_add_simple_test(suite, "BASIC", torture_ldap_basic); torture_suite_add_simple_test(suite, "CLDAP", torture_cldap); torture_suite_add_simple_test(suite, "SCHEMA", torture_ldap_schema); + torture_suite_add_simple_test(suite, "UPTODATEVECTOR", torture_ldap_uptodatevector); - suite->description = talloc_strdup( - suite, "LDAP and CLDAP tests"); + suite->description = talloc_strdup(suite, "LDAP and CLDAP tests"); torture_register_suite(suite); -- cgit