Update.
authorUlrich Drepper <drepper@redhat.com>
Fri, 7 May 1999 11:32:00 +0000 (11:32 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 7 May 1999 11:32:00 +0000 (11:32 +0000)
1999-05-07  Ulrich Drepper  <drepper@cygnus.com>

* stdio-common/tst-printf.c: Add test case for last _itoa problem.

* stdio-common/vfprintf.c: Fix typo.

ChangeLog
stdio-common/tst-printf.c
stdio-common/vfprintf.c

index 06de3f1..1dbd5e9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+1999-05-07  Ulrich Drepper  <drepper@cygnus.com>
+
+       * stdio-common/tst-printf.c: Add test case for last _itoa problem.
+
+       * stdio-common/vfprintf.c: Fix typo.
+
 1999-05-06  Ulrich Drepper  <drepper@cygnus.com>
 
        * elf/link.h (struct link_map): New field l_phdr_allocated.
index 884e19f..c50c882 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 92, 93, 95, 96, 97, 98 Free Software Foundation, Inc.
+/* Copyright (C) 1991,92,93,95,96,97,98,99 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -132,6 +132,7 @@ main (int argc, char *argv[])
   static char shortstr[] = "Hi, Z.";
   static char longstr[] = "Good morning, Doctor Chandra.  This is Hal.  \
 I am ready for my first lesson today.";
+  int result = 0;
 
   fmtchk("%.4x");
   fmtchk("%04x");
@@ -237,16 +238,30 @@ I am ready for my first lesson today.";
 
   {
     char buf[200];
-    int result;
 
     sprintf(buf,"%*s%*s%*s",-1,"one",-20,"two",-30,"three");
 
-    result = strcmp (buf,
-                    "onetwo                 three                         ");
+    result |= strcmp (buf,
+                     "onetwo                 three                         ");
 
     puts (result != 0 ? "Test failed!" : "Test ok.");
-    return result != 0;
   }
+
+  {
+    char buf[200];
+
+    sprintf (buf, "%07Lo", 040000000000ll);
+    printf ("sprintf (buf, \"%%07Lo\", 040000000000ll) = %s\n", buf);
+
+    if (strcmp (buf, "40000000000") != 0)
+      {
+       result = 1;
+       fputs ("\tFAILED", stdout);
+      }
+    puts ("");
+  }
+
+  return result != 0;
 }
 \f
 void
index b61b637..263b023 100644 (file)
@@ -597,7 +597,7 @@ vfprintf (FILE *s, const CHAR_T *format, va_list ap)
                string = group_number (string, workend, grouping,             \
                                       thousands_sep);                        \
            }                                                                 \
-         /* Simply further test for num != 0.  */                            \
+         /* Simplify further test for num != 0.  */                          \
          number.word = number.longlong != 0;                                 \
        }                                                                     \
       else                                                                   \