From a2c691ab9a21946e0c6a86d11278a1a220615dc8 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Mon, 11 Apr 2011 21:37:01 +1000 Subject: lib/util/charset Rename convert_string test to allow a 'non_handle' test A future commit will test (with a subset of tests) the varient of this function without _handle. Andrew Bartlett Signed-off-by: Andrew Tridgell --- lib/util/charset/tests/convert_string.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'lib') diff --git a/lib/util/charset/tests/convert_string.c b/lib/util/charset/tests/convert_string.c index 1da9f0a8dd..ac0985c5e8 100644 --- a/lib/util/charset/tests/convert_string.c +++ b/lib/util/charset/tests/convert_string.c @@ -834,15 +834,14 @@ static bool test_plato_case_utf8(struct torture_context *tctx) return true; } -struct torture_suite *torture_local_convert_string(TALLOC_CTX *mem_ctx) +struct torture_suite *torture_local_convert_string_handle(TALLOC_CTX *mem_ctx) { - struct torture_suite *suite = torture_suite_create(mem_ctx, "convert_string_talloc"); + struct torture_suite *suite = torture_suite_create(mem_ctx, "convert_string_handle"); torture_suite_add_simple_test(suite, "gd_iso8859_cp850", test_gd_iso8859_cp850); torture_suite_add_simple_test(suite, "plato_english_iso8859_cp850", test_plato_english_iso8859_cp850); torture_suite_add_simple_test(suite, "plato_cp850_utf8", test_plato_cp850_utf8); torture_suite_add_simple_test(suite, "plato_latin_cp850_utf8", test_plato_latin_cp850_utf8); - torture_suite_add_simple_test(suite, "plato_ascii_cp850_utf8", test_plato_latin_cp850_utf8); return suite; } -- cgit