diff options
Diffstat (limited to 'source4/torture/winbind')
-rw-r--r-- | source4/torture/winbind/struct_based.c | 40 | ||||
-rw-r--r-- | source4/torture/winbind/winbind.c | 2 |
2 files changed, 21 insertions, 21 deletions
diff --git a/source4/torture/winbind/struct_based.c b/source4/torture/winbind/struct_based.c index 1603280e48..ea81871250 100644 --- a/source4/torture/winbind/struct_based.c +++ b/source4/torture/winbind/struct_based.c @@ -1062,26 +1062,26 @@ static bool torture_winbind_struct_lookup_name_sid(struct torture_context *tortu struct torture_suite *torture_winbind_struct_init(void) { - struct torture_suite *suite = torture_suite_create(talloc_autofree_context(), "STRUCT"); - - torture_suite_add_simple_test(suite, "INTERFACE_VERSION", torture_winbind_struct_interface_version); - torture_suite_add_simple_test(suite, "PING", torture_winbind_struct_ping); - torture_suite_add_simple_test(suite, "INFO", torture_winbind_struct_info); - torture_suite_add_simple_test(suite, "PRIV_PIPE_DIR", torture_winbind_struct_priv_pipe_dir); - torture_suite_add_simple_test(suite, "NETBIOS_NAME", torture_winbind_struct_netbios_name); - torture_suite_add_simple_test(suite, "DOMAIN_NAME", torture_winbind_struct_domain_name); - torture_suite_add_simple_test(suite, "CHECK_MACHACC", torture_winbind_struct_check_machacc); - torture_suite_add_simple_test(suite, "LIST_TRUSTDOM", torture_winbind_struct_list_trustdom); - torture_suite_add_simple_test(suite, "DOMAIN_INFO", torture_winbind_struct_domain_info); - torture_suite_add_simple_test(suite, "GETDCNAME", torture_winbind_struct_getdcname); - torture_suite_add_simple_test(suite, "DSGETDCNAME", torture_winbind_struct_dsgetdcname); - torture_suite_add_simple_test(suite, "LIST_USERS", torture_winbind_struct_list_users); - torture_suite_add_simple_test(suite, "LIST_GROUPS", torture_winbind_struct_list_groups); - torture_suite_add_simple_test(suite, "SHOW_SEQUENCE", torture_winbind_struct_show_sequence); - torture_suite_add_simple_test(suite, "SETPWENT", torture_winbind_struct_setpwent); - torture_suite_add_simple_test(suite, "GETPWENT", torture_winbind_struct_getpwent); - torture_suite_add_simple_test(suite, "ENDPWENT", torture_winbind_struct_endpwent); - torture_suite_add_simple_test(suite, "LOOKUP_NAME_SID", torture_winbind_struct_lookup_name_sid); + struct torture_suite *suite = torture_suite_create(talloc_autofree_context(), "struct"); + + torture_suite_add_simple_test(suite, "interface_version", torture_winbind_struct_interface_version); + torture_suite_add_simple_test(suite, "ping", torture_winbind_struct_ping); + torture_suite_add_simple_test(suite, "info", torture_winbind_struct_info); + torture_suite_add_simple_test(suite, "priv_pipe_dir", torture_winbind_struct_priv_pipe_dir); + torture_suite_add_simple_test(suite, "netbios_name", torture_winbind_struct_netbios_name); + torture_suite_add_simple_test(suite, "domain_name", torture_winbind_struct_domain_name); + torture_suite_add_simple_test(suite, "check_machacc", torture_winbind_struct_check_machacc); + torture_suite_add_simple_test(suite, "list_trustdom", torture_winbind_struct_list_trustdom); + torture_suite_add_simple_test(suite, "domain_info", torture_winbind_struct_domain_info); + torture_suite_add_simple_test(suite, "getdcname", torture_winbind_struct_getdcname); + torture_suite_add_simple_test(suite, "dsgetdcname", torture_winbind_struct_dsgetdcname); + torture_suite_add_simple_test(suite, "list_users", torture_winbind_struct_list_users); + torture_suite_add_simple_test(suite, "list_groups", torture_winbind_struct_list_groups); + torture_suite_add_simple_test(suite, "show_sequence", torture_winbind_struct_show_sequence); + torture_suite_add_simple_test(suite, "setpwent", torture_winbind_struct_setpwent); + torture_suite_add_simple_test(suite, "getpwent", torture_winbind_struct_getpwent); + torture_suite_add_simple_test(suite, "endpwent", torture_winbind_struct_endpwent); + torture_suite_add_simple_test(suite, "lookup_name_sid", torture_winbind_struct_lookup_name_sid); suite->description = talloc_strdup(suite, "WINBIND - struct based protocol tests"); diff --git a/source4/torture/winbind/winbind.c b/source4/torture/winbind/winbind.c index 63d31a5f1e..80b914b2eb 100644 --- a/source4/torture/winbind/winbind.c +++ b/source4/torture/winbind/winbind.c @@ -23,7 +23,7 @@ NTSTATUS torture_winbind_init(void) { - struct torture_suite *suite = torture_suite_create(talloc_autofree_context(), "WINBIND"); + struct torture_suite *suite = torture_suite_create(talloc_autofree_context(), "winbind"); torture_suite_add_suite(suite, torture_winbind_struct_init()); torture_suite_add_suite(suite, torture_wbclient()); |