1 /* Tests of strtod 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 NBSP "\xc2\xa0"
47 { "0e-1000000", 0.0 },
48 { "-0e-1000000", -0.0 },
49 { "0,0e-1000000", 0.0 },
50 { "-0,0e-1000000", -0.0 },
52 #define NTESTS (sizeof (tests) / sizeof (tests[0]))
58 if (setlocale (LC_ALL
, "cs_CZ.UTF-8") == NULL
)
60 puts ("could not set locale");
66 for (int i
= 0; i
< NTESTS
; ++i
)
69 double r
= strtod (tests
[i
].in
, &ep
);
73 printf ("%d: got rest string \"%s\", expected \"\"\n", i
, ep
);
77 if (r
!= tests
[i
].expected
78 || copysign (10.0, r
) != copysign (10.0, tests
[i
].expected
))
80 printf ("%d: got wrong results %g, expected %g\n",
81 i
, r
, tests
[i
].expected
);
89 #include <support/test-driver.c>