From ed9c47d90b74b02e40d45b65b84027b8f2eca9c9 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Fri, 13 Aug 1999 22:39:09 +0000 Subject: Update. 1999-08-13 Ulrich Drepper * stdio-common/tstscanf.c: Add test for hexadecimal float parsing problem. --- stdio-common/tstscanf.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'stdio-common/tstscanf.c') diff --git a/stdio-common/tstscanf.c b/stdio-common/tstscanf.c index 85ea70f135..4e56251e03 100644 --- a/stdio-common/tstscanf.c +++ b/stdio-common/tstscanf.c @@ -250,5 +250,20 @@ main (int argc, char **argv) } } + fputs ("Test 8:\n", stdout); + { + double d = 123456.789; + int res; + + res = sscanf ("0x1234", "%lf", &d); + printf ("res = %d, d = %f\n", res, d); + + if (res != 0 || d != 123456.789) + { + fputs ("test failed!\n", stdout); + result = 1; + } + } + exit (result); } -- cgit 1.4.1