From 1f55ce483b6f14da23383d7a192a0a9d6b99b7de Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Mon, 11 Dec 2006 21:43:56 +0000 Subject: * stdlib/strtod_l.c (____STRTOF_INTERNAL): Parse thousand separators also if no non-zero digits found. * stdlib/Makefile (tests): Add tst-strtod3. --- stdlib/tst-strtod2.c | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 stdlib/tst-strtod2.c (limited to 'stdlib/tst-strtod2.c') diff --git a/stdlib/tst-strtod2.c b/stdlib/tst-strtod2.c new file mode 100644 index 0000000000..925ea9cafa --- /dev/null +++ b/stdlib/tst-strtod2.c @@ -0,0 +1,25 @@ +#include +#include + +static int +do_test (void) +{ + int status = 0; + const char s[] = "0x"; + char *ep; + double r = strtod (s, &ep); + if (r != 0) + { + printf ("r = %g, expect 0\n", r); + status = 1; + } + if (ep != s + 1) + { + printf ("strtod parsed %ju characters, expected 1\n", ep - s); + status = 1; + } + return status; +} + +#define TEST_FUNCTION do_test () +#include "../test-skeleton.c" -- cgit v1.2.3