1 /* Test strtod functions work with all ASCII letters in NAN(...) in
2 Turkish locales (bug 19266).
3 Copyright (C) 2015-2017 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, see
18 <http://www.gnu.org/licenses/>. */
27 #define STR(X) STR_(X)
28 #define FNPFXS STR (FNPFX)
29 #define CONCAT_(X, Y) X ## Y
30 #define CONCAT(X, Y) CONCAT_ (X, Y)
31 #define FNX(FN) CONCAT (FNPFX, FN)
33 #define TEST(LOC, STR, FN, TYPE) \
37 TYPE val = FNX (FN) (STR, &ep); \
38 if (isnan (val) && *ep == 0) \
39 printf ("PASS: %s: " FNPFXS #FN " (" SFMT ")\n", LOC, STR); \
42 printf ("FAIL: %s: " FNPFXS #FN " (" SFMT ")\n", LOC, STR); \
49 test_one_locale (const char *loc
)
51 if (setlocale (LC_ALL
, loc
) == NULL
)
53 printf ("setlocale (LC_ALL, \"%s\") failed\n", loc
);
57 for (int i
= 10; i
< 36; i
++)
64 s
[4] = L_('A') + i
- 10;
67 TEST (loc
, s
, f
, float);
68 TEST (loc
, s
, d
, double);
69 TEST (loc
, s
, ld
, long double);
70 s
[4] = L_('a') + i
- 10;
71 TEST (loc
, s
, f
, float);
72 TEST (loc
, s
, d
, double);
73 TEST (loc
, s
, ld
, long double);
82 result
|= test_one_locale ("C");
83 result
|= test_one_locale ("tr_TR.UTF-8");
84 result
|= test_one_locale ("tr_TR.ISO-8859-9");
88 #define TEST_FUNCTION do_test ()
89 #include "../test-skeleton.c"