summaryrefslogtreecommitdiff
path: root/source4/torture/ldap/common.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2007-02-20 14:39:13 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:48:39 -0500
commitea500fbdaef1dd2994c060d32b94c6ea114a1a07 (patch)
treecc4a28b777f6de01031d3c4bd2d2a38398ed28c1 /source4/torture/ldap/common.c
parent8f83985f2890ac2b47a33853812d62bbb90e9cf4 (diff)
downloadsamba-ea500fbdaef1dd2994c060d32b94c6ea114a1a07.tar.gz
samba-ea500fbdaef1dd2994c060d32b94c6ea114a1a07.tar.bz2
samba-ea500fbdaef1dd2994c060d32b94c6ea114a1a07.zip
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)
Diffstat (limited to 'source4/torture/ldap/common.c')
-rw-r--r--source4/torture/ldap/common.c11
1 files changed, 4 insertions, 7 deletions
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);