# HG changeset patch # User Matti Hamalainen # Date 1577331528 -7200 # Node ID d42574b3dc006a3618b54e0eb4340f47ed032e5f # Parent 25fc4ab342d3e752549c888fd824e1aee62e6ad3 Adjust two test names. diff -r 25fc4ab342d3 -r d42574b3dc00 tests.c --- a/tests.c Thu Dec 26 04:17:00 2019 +0200 +++ b/tests.c Thu Dec 26 05:38:48 2019 +0200 @@ -211,7 +211,6 @@ } - void test_snprintf_do(size_t len, const char *msg, const char *fmt, va_list ap) { int ret1, ret2; @@ -499,7 +498,7 @@ // Tests that test for things that do not work correctly yet // Unicode / multibyte UTF-8 causes problems here - if (test_set_start("Invalid")) + if (test_set_start("Invalid UTF-8 handling")) { TEST2(th_strcasecmp, "ÖÄÅ", "öäå", FALSE); // SHOULD match TEST3(th_strncasecmp, "Aäöå", "aöå", 2, TRUE); // should NOT match @@ -507,7 +506,7 @@ } // printf PRI* format specifiers, also a compile time test - if (test_set_start("PRI*")) + if (test_set_start("PRI* specifiers")) { char tmp[32]; uint32_t u32 = 0xaabbccdd;