about summary refs log tree commit diff
path: root/stdio-common/tst-sprintf.c
diff options
context:
space:
mode:
authorJeff Law <law@redhat.com>2012-09-28 12:48:42 -0600
committerJeff Law <law@redhat.com>2012-09-28 12:49:51 -0600
commit715a900c9085907fa749589bf738b192b1a2bda5 (patch)
treea5f194cde176cdb38c2f712c51477aa427ba33ae /stdio-common/tst-sprintf.c
parent9c464f9c0c9d85df80233c1b0a22f9a7cd318096 (diff)
downloadglibc-715a900c9085907fa749589bf738b192b1a2bda5.tar.gz
glibc-715a900c9085907fa749589bf738b192b1a2bda5.tar.xz
glibc-715a900c9085907fa749589bf738b192b1a2bda5.zip
2012-09-28 Andreas Schwab <schwab@linux-m68k.org>
        [BZ #6530]
        * stdio-common/vfprintf.c (process_string_arg): Revert
        2000-07-22 change.

2011-09-28  Jonathan Nieder  <jrnieder@gmail.com>

        * stdio-common/Makefile (tst-sprintf-ENV): Set environment
        for testcase.
        * stdio-common/tst-sprintf.c: Include <locale.h>
        (main): Test sprintf's handling of incomplete multibyte
        characters.
Diffstat (limited to 'stdio-common/tst-sprintf.c')
-rw-r--r--stdio-common/tst-sprintf.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/stdio-common/tst-sprintf.c b/stdio-common/tst-sprintf.c
index c04fef18f4..c4e911fe94 100644
--- a/stdio-common/tst-sprintf.c
+++ b/stdio-common/tst-sprintf.c
@@ -1,5 +1,6 @@
 #include <stdio.h>
 #include <stdlib.h>
+#include <locale.h>
 #include <string.h>
 
 
@@ -58,5 +59,17 @@ main (void)
       result = 1;
     }
 
+  if (setlocale (LC_ALL, "de_DE.UTF-8") == NULL)
+    {
+      puts ("cannot set locale");
+      result = 1;
+    }
+  else if (sprintf (buf, "%.8s\n", "Foo: \277") != 7
+	   || strcmp (buf, "Foo: \277\n") != 0)
+    {
+      printf ("sprintf (buf, \"%%.8s\\n\", \"Foo: \\277\") produced '%s' output\n", buf);
+      result = 1;
+    }
+
   return result;
 }