summaryrefslogtreecommitdiff
path: root/source4/torture/rap
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/rap
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/rap')
-rw-r--r--source4/torture/rap/printing.c2
-rw-r--r--source4/torture/rap/rap.c6
-rw-r--r--source4/torture/rap/rpc.c2
-rw-r--r--source4/torture/rap/sam.c2
4 files changed, 6 insertions, 6 deletions
diff --git a/source4/torture/rap/printing.c b/source4/torture/rap/printing.c
index a2ee582758b..a8ccac56c26 100644
--- a/source4/torture/rap/printing.c
+++ b/source4/torture/rap/printing.c
@@ -686,7 +686,7 @@ static bool test_rap_print(struct torture_context *tctx,
struct torture_suite *torture_rap_printing(TALLOC_CTX *mem_ctx)
{
- struct torture_suite *suite = torture_suite_create(mem_ctx, "PRINTING");
+ struct torture_suite *suite = torture_suite_create(mem_ctx, "printing");
torture_suite_add_1smb_test(suite, "raw_print", test_raw_print);
torture_suite_add_1smb_test(suite, "rap_print", test_rap_print);
diff --git a/source4/torture/rap/rap.c b/source4/torture/rap/rap.c
index 7583d1dd809..04c10a96b32 100644
--- a/source4/torture/rap/rap.c
+++ b/source4/torture/rap/rap.c
@@ -1550,8 +1550,8 @@ bool torture_rap_scan(struct torture_context *torture, struct smbcli_state *cli)
NTSTATUS torture_rap_init(void)
{
- struct torture_suite *suite = torture_suite_create(talloc_autofree_context(), "RAP");
- struct torture_suite *suite_basic = torture_suite_create(suite, "BASIC");
+ struct torture_suite *suite = torture_suite_create(talloc_autofree_context(), "rap");
+ struct torture_suite *suite_basic = torture_suite_create(suite, "basic");
torture_suite_add_suite(suite, suite_basic);
torture_suite_add_suite(suite, torture_rap_rpc(suite));
@@ -1565,7 +1565,7 @@ NTSTATUS torture_rap_init(void)
torture_suite_add_1smb_test(suite_basic, "netservergetinfo",
test_netservergetinfo);
- torture_suite_add_1smb_test(suite, "SCAN", torture_rap_scan);
+ torture_suite_add_1smb_test(suite, "scan", torture_rap_scan);
suite->description = talloc_strdup(suite,
"Remote Administration Protocol tests");
diff --git a/source4/torture/rap/rpc.c b/source4/torture/rap/rpc.c
index 6335a54b353..288d4a03017 100644
--- a/source4/torture/rap/rpc.c
+++ b/source4/torture/rap/rpc.c
@@ -88,7 +88,7 @@ static bool test_rpc_netservergetinfo(struct torture_context *tctx,
struct torture_suite *torture_rap_rpc(TALLOC_CTX *mem_ctx)
{
- struct torture_suite *suite = torture_suite_create(mem_ctx, "RPC");
+ struct torture_suite *suite = torture_suite_create(mem_ctx, "rpc");
torture_suite_add_1smb_test(suite, "netservergetinfo",
test_rpc_netservergetinfo);
diff --git a/source4/torture/rap/sam.c b/source4/torture/rap/sam.c
index 34e8742068e..d452a53ee8e 100644
--- a/source4/torture/rap/sam.c
+++ b/source4/torture/rap/sam.c
@@ -238,7 +238,7 @@ static bool test_usergetinfo(struct torture_context *tctx,
struct torture_suite *torture_rap_sam(TALLOC_CTX *mem_ctx)
{
- struct torture_suite *suite = torture_suite_create(mem_ctx, "SAM");
+ struct torture_suite *suite = torture_suite_create(mem_ctx, "sam");
torture_suite_add_1smb_test(suite, "userpasswordset2", test_userpasswordset2);
torture_suite_add_1smb_test(suite, "oemchangepassword", test_oemchangepassword);