1 /* Copyright (C) 2000-2013 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@redhat.com>, 2000.
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/>. */
26 static int check_ascii (const char *locname
);
34 /* Check mapping of ASCII range for some character sets which have
35 ASCII as a subset. For those the wide char generated must have
37 setlocale (LC_ALL
, "C");
38 result
|= check_ascii (setlocale (LC_ALL
, NULL
));
40 setlocale (LC_ALL
, "de_DE.UTF-8");
41 result
|= check_ascii (setlocale (LC_ALL
, NULL
));
43 setlocale (LC_ALL
, "ja_JP.EUC-JP");
44 result
|= check_ascii (setlocale (LC_ALL
, NULL
));
51 check_ascii (const char *locname
)
56 printf ("Testing locale \"%s\":\n", locname
);
58 for (wc
= 0; wc
<= 127; ++wc
)
60 char buf
[2 * MB_CUR_MAX
];
64 memset (buf
, '\xff', sizeof (buf
));
65 memset (&s
, '\0', sizeof (s
));
67 n
= wcrtomb (buf
, wc
, &s
);
70 printf ("%s: '\\x%x': encoding error\n", locname
, (int) wc
);
75 printf ("%s: '\\x%x': 0 returned\n", locname
, (int) wc
);
80 printf ("%s: '\\x%x': not 1 returned\n", locname
, (int) wc
);
83 else if (wc
!= (wchar_t) buf
[0])
85 printf ("%s: L'\\x%x': buf[0] != '\\x%x'\n", locname
, (int) wc
,
91 printf (res
== 1 ? "%d error\n" : "%d errors\n", res
);