changeset 501:d42574b3dc00

Adjust two test names.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 26 Dec 2019 05:38:48 +0200
parents 25fc4ab342d3
children ebf89497305a
files tests.c
diffstat 1 files changed, 2 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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;