]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - stdio-common/tfformat.c
sparc (64bit): Regenerate ulps
[thirdparty/glibc.git] / stdio-common / tfformat.c
index 259e2e0b18043cae7079d76871473d398590abba..4eb47f0c2b94080ae5559a1bb6f9636287546290 100644 (file)
@@ -1,3 +1,4 @@
+#include <math.h>
 #include <stdio.h>
 
 /* Tests taken from Cygnus C library. */
@@ -4009,6 +4010,10 @@ sprint_double_type sprint_doubles[] =
   {__LINE__, 11.25,                    "11.2", "%.1f"},
   {__LINE__, 1.75,                     "1.8", "%.1f"},
   {__LINE__, 11.75,                    "11.8", "%.1f"},
+  {__LINE__, -1.25,                    "-1.2", "%.1f"},
+  {__LINE__, -11.25,                   "-11.2", "%.1f"},
+  {__LINE__, -1.75,                    "-1.8", "%.1f"},
+  {__LINE__, -11.75,                   "-11.8", "%.1f"},
   {__LINE__, 16,                       "0x1.0p+4", "%.1a"},
   {__LINE__, 16,                       "0x1.00000000000000000000p+4", "%.20a"},
   {__LINE__, 4444.88888888,            "4445", "%2.F"},
@@ -4021,6 +4026,46 @@ sprint_double_type sprint_doubles[] =
   {__LINE__, 0.000098,                 "0.0001", "%#.0g"},
   {__LINE__, 0.0000996,                        "0.00010", "%#.2g"},
   {__LINE__, 9.999999999999999e-05,    "0.0001", "%g"},
+  {__LINE__, 1.0,                      "1.000000e+00", "%e"},
+  {__LINE__, .9999999999999999,                "1.000000e+00", "%e"},
+
+  {__LINE__, 912.98,                   "913.0", "%#.4g"},
+  {__LINE__, 50.999999,                        "51.000", "%#.5g"},
+  {__LINE__, 0.956,                    "1", "%.1g"},
+  {__LINE__, 0.956,                    "1.", "%#.1g"},
+  {__LINE__, 0.996,                    "1", "%.2g"},
+  {__LINE__, 0.996,                    "1.0", "%#.2g"},
+  {__LINE__, 999.98,                   "1000", "%.4g"},
+  {__LINE__, 999.98,                   "1000.", "%#.4g"},
+  {__LINE__, 999.998,                  "1000", "%.5g"},
+  {__LINE__, 999.998,                  "1000.0", "%#.5g"},
+  {__LINE__, 999.9998,                 "1000", "%g"},
+  {__LINE__, 999.9998,                 "1000.00", "%#g"},
+  {__LINE__, 912.98,                   "913", "%.4g"},
+  {__LINE__, 50.999999,                        "51", "%.5g"},
+
+  {__LINE__, 0.0,                      "0000.00000", "%010.5f"},
+  {__LINE__, 0.0,                      " 000.00000", "% 010.5f"},
+  {__LINE__, -0.0,                     "-000.00000", "% 010.5f"},
+
+  {__LINE__, NAN,                      "nan", "%f"},
+  {__LINE__, NAN,                      "+nan", "%+f"},
+  {__LINE__, NAN,                      "       nan", "%010.2f"},
+  {__LINE__, NAN,                      "      +nan", "%+010.2f"},
+  {__LINE__, -NAN,                     "-nan", "%f"},
+  {__LINE__, -NAN,                     "-nan", "%+f"},
+  {__LINE__, -NAN,                     "      -nan", "%010.2f"},
+  {__LINE__, -NAN,                     "      -nan", "%+010.2f"},
+  {__LINE__, NAN,                      "NAN", "%F"},
+  {__LINE__, INFINITY,                 "inf", "%f"},
+  {__LINE__, INFINITY,                 "+inf", "%+f"},
+  {__LINE__, INFINITY,                 "       inf", "%010.2f"},
+  {__LINE__, INFINITY,                 "      +inf", "%+010.2f"},
+  {__LINE__, -INFINITY,                        "-inf", "%f"},
+  {__LINE__, -INFINITY,                        "-inf", "%+f"},
+  {__LINE__, -INFINITY,                        "      -inf", "%010.2f"},
+  {__LINE__, -INFINITY,                        "      -inf", "%+010.2f"},
+  {__LINE__, INFINITY,                 "INF", "%F"},
 
   {0 }
 
@@ -4033,7 +4078,7 @@ sprint_double_type sprint_doubles[] =
 int required_precision = 13;
 
 static int
-matches (register char *result, register const char *desired)
+matches (char *result, const char *desired)
 {
     int digits_seen = 0;
     for (;; result++, desired++) {
@@ -4073,7 +4118,7 @@ int main(int argc, char *argv[])
 
       sprintf (buffer, "%.999g", dptr->value);
       sscanf (buffer, "%lg", &d);
-      if (dptr->value != d)
+      if (dptr->value != d && !isnan(d))
        {
          errcount++;
          printf ("Error in line %d.  String is \"%s\", value is %g.\n",