]> sourceware.org Git - glibc.git/commitdiff
* stdio-common/test-vfprintf.c (main): Add test for large
authorUlrich Drepper <drepper@redhat.com>
Tue, 1 May 2007 18:35:44 +0000 (18:35 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 1 May 2007 18:35:44 +0000 (18:35 +0000)
precision.

ChangeLog
stdio-common/test-vfprintf.c

index 6ba3a12edb4e78eaf64579395b44ce40566c69ec..d558dede4eccef17724d8b6ee04b3abdf6237440 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,8 @@
        [BZ #4438]
        * stdio-common/vfprintf.c (process_string_arg): Don't overflow the
        stack for large precisions.
+       * stdio-common/test-vfprintf.c (main): Add test for large
+       precision.
 
 2007-04-30  Jakub Jelinek  <jakub@redhat.com>
 
index a683eac779e66ce6629a236b927e2d800a0b456c..342ac471dab14420f82d6656ffa0d6fc189a3bf5 100644 (file)
@@ -1,5 +1,5 @@
 /* Tests of *printf for very large strings.
-   Copyright (C) 2000, 2002, 2003 Free Software Foundation, Inc.
+   Copyright (C) 2000, 2002, 2003, 2007 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@redhat.com>, 2000.
 
@@ -94,6 +94,7 @@ main (void)
       fprintf (fp, "%.*s", 30000, large);
       large[20000] = '\0';
       fprintf (fp, large);
+      fprintf (fp, "%-1.300000000s", "hello");
 
       if (fflush (fp) != 0 || ferror (fp) != 0 || fclose (fp) != 0)
        {
@@ -108,11 +109,12 @@ main (void)
                  setlocale (LC_ALL, NULL));
          exit (1);
        }
-      else if (st.st_size != 99999)
+      else if (st.st_size != 50000 + 30000 + 19999 + 5)
        {
          printf ("file size incorrect for locale %s: %jd instead of %jd\n",
                  setlocale (LC_ALL, NULL),
-                 (intmax_t) st.st_size, (intmax_t) 99999);
+                 (intmax_t) st.st_size,
+                 (intmax_t) 50000 + 30000 + 19999 + 5);
          res = 1;
        }
       else
This page took 0.048091 seconds and 5 git commands to generate.