1 /* Tests of __strtod_internal in a locale using decimal comma.
2 Copyright (C) 2007-2017 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
25 #define NNBSP "\xe2\x80\xaf"
43 { "-0e-10", 0, -0.0 },
45 { "-0,e-10", 0, -0.0 },
46 { "0,0e-10", 0, 0.0 },
47 { "-0,0e-10", 0, -0.0 },
48 { "0e-1000000", 0, 0.0 },
49 { "-0e-1000000", 0, -0.0 },
50 { "0,0e-1000000", 0, 0.0 },
51 { "-0,0e-1000000", 0, -0.0 },
57 { "-0e-10", 1, -0.0 },
58 { "0e-1000000", 1, 0.0 },
59 { "-0e-1000000", 1, -0.0 },
60 { "000"NNBSP
"000"NNBSP
"000", 1, 0.0 },
61 { "-000"NNBSP
"000"NNBSP
"000", 1, -0.0 }
63 #define NTESTS (sizeof (tests) / sizeof (tests[0]))
69 if (setlocale (LC_ALL
, "cs_CZ.UTF-8") == NULL
)
71 puts ("could not set locale");
77 for (int i
= 0; i
< NTESTS
; ++i
)
80 double r
= __strtod_internal (tests
[i
].in
, &ep
, tests
[i
].group
);
84 printf ("%d: got rest string \"%s\", expected \"\"\n", i
, ep
);
88 if (r
!= tests
[i
].expected
89 || copysign (10.0, r
) != copysign (10.0, tests
[i
].expected
))
91 printf ("%d: got wrong results %g, expected %g\n",
92 i
, r
, tests
[i
].expected
);
100 #include <support/test-driver.c>