From: Stefan Metzmacher Date: Sat, 11 Dec 2010 10:03:52 +0000 (+0100) Subject: libcli/echo: lowercase testsuite names X-Git-Url: http://git.samba.org/?p=metze%2Fsamba%2Fwip.git;a=commitdiff_plain;h=b6fef94ec16e17275d48f78453b3158a87c8f605 libcli/echo: lowercase testsuite names metze --- diff --git a/libcli/echo/tests/echo.c b/libcli/echo/tests/echo.c index 931e8b6c02f6..77a7dfa677f5 100644 --- a/libcli/echo/tests/echo.c +++ b/libcli/echo/tests/echo.c @@ -81,10 +81,10 @@ NTSTATUS torture_libcli_echo_init(void) { struct torture_suite *suite; - suite = torture_suite_create(talloc_autofree_context(), "ECHO"); + suite = torture_suite_create(talloc_autofree_context(), "echo"); NT_STATUS_HAVE_NO_MEMORY(suite); - torture_suite_add_simple_test(suite, "UDP", torture_echo_udp); + torture_suite_add_simple_test(suite, "udp", torture_echo_udp); suite->description = talloc_strdup(suite, "libcli/echo interface tests"); torture_register_suite(suite);