summaryrefslogtreecommitdiff
path: root/source4/torture/ldb
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2010-12-11 03:26:31 +0100
committerJelmer Vernooij <jelmer@samba.org>2010-12-11 04:16:13 +0100
commit35fbc7bbda5851f7172538f79fc79be201f1d521 (patch)
tree30449903f8f3288618986e3dadddd7a29f0ffe5f /source4/torture/ldb
parent68d97f8b492d1d075ed77a4bab7f178d10570106 (diff)
downloadsamba-35fbc7bbda5851f7172538f79fc79be201f1d521.tar.gz
s4-smbtorture: Make test names lowercase and dot-separated.
This is consistent with the test names used by selftest, should make the names less confusing and easier to integrate with other tools. Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Sat Dec 11 04:16:13 CET 2010 on sn-devel-104
Diffstat (limited to 'source4/torture/ldb')
-rw-r--r--source4/torture/ldb/ldb.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source4/torture/ldb/ldb.c b/source4/torture/ldb/ldb.c
index f5f09fae382..23f060b9b1c 100644
--- a/source4/torture/ldb/ldb.c
+++ b/source4/torture/ldb/ldb.c
@@ -795,17 +795,17 @@ static bool torture_ldb_dn_invalid_extended(struct torture_context *torture)
struct torture_suite *torture_ldb(TALLOC_CTX *mem_ctx)
{
- struct torture_suite *suite = torture_suite_create(mem_ctx, "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);
- torture_suite_add_simple_test(suite, "DN-INVALID-EXTENDED", torture_ldb_dn_invalid_extended);
- torture_suite_add_simple_test(suite, "DN", torture_ldb_dn);
+ 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);
+ torture_suite_add_simple_test(suite, "dn-invalid-extended", torture_ldb_dn_invalid_extended);
+ torture_suite_add_simple_test(suite, "dn", torture_ldb_dn);
suite->description = talloc_strdup(suite, "LDB (samba-specific behaviour) tests");