From 936365c1da8bb783a29c4f94c30b8099d8bdd4f7 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 13 May 1998 16:25:59 +0000 Subject: Update. * stdlib/tst-strtod.c: Add test for -0.0. --- stdlib/tst-strtod.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'stdlib') diff --git a/stdlib/tst-strtod.c b/stdlib/tst-strtod.c index 3cc907f..bfc2481 100644 --- a/stdlib/tst-strtod.c +++ b/stdlib/tst-strtod.c @@ -47,6 +47,7 @@ static void expand __P ((char *dst, int c)); int main (int argc, char ** argv) { + char buf[100]; register const struct ltest *lt; char *ep; int status = 0; @@ -83,6 +84,13 @@ main (int argc, char ** argv) } } + sprintf (buf, "%f", strtod ("-0.0", NULL)); + if (strcmp (buf, "-0.000000") != 0) + { + printf (" strtod (\"-0.0\', NULL) returns \"%s\"\n", buf); + status = 1; + } + exit (status ? EXIT_FAILURE : EXIT_SUCCESS); } -- cgit v1.1