vasnprintf: Add more tests.
authorBruno Haible <bruno@clisp.org>
Sat, 10 Apr 2010 20:26:56 +0000 (22:26 +0200)
committerIan Beckwith <ianb@erislabs.net>
Mon, 19 Apr 2010 15:29:43 +0000 (16:29 +0100)
(cherry picked from commit de9f4b14d7c2acc5088ecde5e5ccfdf7532aab29)

ChangeLog
tests/test-vasnprintf-posix.c

index aae0f30..3fdaaa4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2010-04-10  Bruno Haible  <bruno@clisp.org>
 
+       vasnprintf: Add more tests.
+       * tests/test-vasnprintf-posix.c: Include <errno.h>.
+       (test_function): Test converting an invalid wide string.
+
        vasnprintf: Correct handling of unconvertible wide string arguments.
        * lib/vasnprintf.c (MAX_ROOM_NEEDED): New function, extracted from
        VASNPRINTF.
index 74ba165..3a9879f 100644 (file)
@@ -20,6 +20,7 @@
 
 #include "vasnprintf.h"
 
+#include <errno.h>
 #include <float.h>
 #include <stdarg.h>
 #include <stddef.h>
@@ -3636,6 +3637,46 @@ test_function (char * (*my_asnprintf) (char *, size_t *, const char *, ...))
       }
   }
 #endif
+
+#if HAVE_WCHAR_T
+  /* Test that converting an invalid wchar_t[] to char[] fails with EILSEQ.  */
+  {
+    static const wchar_t input[] = { (wchar_t) 1702057263, 114, 0 };
+    size_t length;
+    char *result = my_asnprintf (NULL, &length, "%ls %d", input, 99);
+    if (result == NULL)
+      ASSERT (errno == EILSEQ);
+    else
+      free (result);
+  }
+  {
+    static const wchar_t input[] = { (wchar_t) 1702057263, 114, 0 };
+    size_t length;
+    char *result = my_asnprintf (NULL, &length, "%3ls %d", input, 99);
+    if (result == NULL)
+      ASSERT (errno == EILSEQ);
+    else
+      free (result);
+  }
+  {
+    static const wchar_t input[] = { (wchar_t) 1702057263, 114, 0 };
+    size_t length;
+    char *result = my_asnprintf (NULL, &length, "%.1ls %d", input, 99);
+    if (result == NULL)
+      ASSERT (errno == EILSEQ);
+    else
+      free (result);
+  }
+  {
+    static const wchar_t input[] = { (wchar_t) 1702057263, 114, 0 };
+    size_t length;
+    char *result = my_asnprintf (NULL, &length, "%3.1ls %d", input, 99);
+    if (result == NULL)
+      ASSERT (errno == EILSEQ);
+    else
+      free (result);
+  }
+#endif
 }
 
 static char *