From 35fbc7bbda5851f7172538f79fc79be201f1d521 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sat, 11 Dec 2010 03:26:31 +0100 Subject: 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 Autobuild-Date: Sat Dec 11 04:16:13 CET 2010 on sn-devel-104 --- source4/torture/rap/printing.c | 2 +- source4/torture/rap/rap.c | 6 +++--- source4/torture/rap/rpc.c | 2 +- source4/torture/rap/sam.c | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) (limited to 'source4/torture/rap') diff --git a/source4/torture/rap/printing.c b/source4/torture/rap/printing.c index a2ee582758..a8ccac56c2 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 7583d1dd80..04c10a96b3 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 6335a54b35..288d4a0301 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 34e8742068..d452a53ee8 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); -- cgit