chiark / gitweb /
Apply https://sourceware.org/git/?p=glibc.git;a=commit;h=d5dd6189d506068ed11c8bfa1e1e...
[eglibc.git] / wctype / test_wctype.c
1 /* Copyright (C) 1996, 1997, 2000 Free Software Foundation, Inc.
2    This file is part of the GNU C Library.
3
4    The GNU C Library is free software; you can redistribute it and/or
5    modify it under the terms of the GNU Lesser General Public
6    License as published by the Free Software Foundation; either
7    version 2.1 of the License, or (at your option) any later version.
8
9    The GNU C Library is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12    Lesser General Public License for more details.
13
14    You should have received a copy of the GNU Lesser General Public
15    License along with the GNU C Library; if not, write to the Free
16    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17    02111-1307 USA.  */
18
19 #include <ctype.h>
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include <wctype.h>
23
24 int
25 main (int argc, char *argv[])
26 {
27   int result = 0;
28   wctype_t bit_alnum = wctype ("alnum");
29   wctype_t bit_alpha = wctype ("alpha");
30   wctype_t bit_cntrl = wctype ("cntrl");
31   wctype_t bit_digit = wctype ("digit");
32   wctype_t bit_graph = wctype ("graph");
33   wctype_t bit_lower = wctype ("lower");
34   wctype_t bit_print = wctype ("print");
35   wctype_t bit_punct = wctype ("punct");
36   wctype_t bit_space = wctype ("space");
37   wctype_t bit_upper = wctype ("upper");
38   wctype_t bit_xdigit = wctype ("xdigit");
39   int ch;
40
41   if (wctype ("does not exist") != 0)
42     {
43       puts ("wctype return value != 0 for non existing property");
44       result = 1;
45     }
46
47   for (ch = 0; ch < 256; ++ch)
48     {
49 #define TEST(test) \
50       do                                                                      \
51         {                                                                     \
52           if ((is##test (ch) == 0) != (iswctype (ch, bit_##test) == 0))       \
53             {                                                                 \
54               printf ("`iswctype' class `%s' test "                           \
55                       "for character \\%o failed\n", #test, ch);              \
56               result = 1;                                                     \
57             }                                                                 \
58           if ((is##test (ch) == 0) != (isw##test (ch) == 0))                  \
59             {                                                                 \
60               printf ("`isw%s' test for character \\%o failed\n",             \
61                       #test, ch);                                             \
62               result = 1;                                                     \
63             }                                                                 \
64          }                                                                    \
65       while (0)
66
67       TEST (alnum);
68       TEST (alpha);
69       TEST (cntrl);
70       TEST (digit);
71       TEST (graph);
72       TEST (lower);
73       TEST (print);
74       TEST (punct);
75       TEST (space);
76       TEST (upper);
77       TEST (xdigit);
78     }
79
80   if (result == 0)
81     puts ("All test successful!");
82   return result;
83 }