OSDN Git Service

2005-08-17 Kelley Cook <kcook@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 22_locale / ctype / is / wchar_t / 11740.cc
1 // Copyright (C) 2003 Free Software Foundation, Inc.
2 //
3 // This file is part of the GNU ISO C++ Library.  This library is free
4 // software; you can redistribute it and/or modify it under the
5 // terms of the GNU General Public License as published by the
6 // Free Software Foundation; either version 2, or (at your option)
7 // any later version.
8
9 // This 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
12 // GNU General Public License for more details.
13
14 // You should have received a copy of the GNU General Public License along
15 // with this library; see the file COPYING.  If not, write to the Free
16 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
17 // USA.
18
19 // As a special exception, you may use this file as part of a free software
20 // library without restriction.  Specifically, if other files instantiate
21 // templates or use macros or inline functions from this file, or you compile
22 // this file and link it with other files to produce an executable, this
23 // file does not by itself cause the resulting executable to be covered by
24 // the GNU General Public License.  This exception does not however
25 // invalidate any other reasons why the executable file might be covered by
26 // the GNU General Public License.
27
28 #include <locale>
29 #include <algorithm>
30 #include <cstddef>
31 #include <testsuite_hooks.h>
32
33 // libstdc++/11740
34 void test01()
35 {
36   using namespace std;
37   bool test __attribute__((unused)) = true;
38   
39   const wchar_t str[] =
40     L"Is this the real life?\n"
41     L"Is this just fantasy?\n"
42     L"Caught in a landslide\n"
43     L"No escape from reality\n"
44     L"Open your eyes\n"
45     L"Look up to the skies and see\n"
46     L"I'm just a poor boy\n"
47     L"I need no sympathy\n"
48     L"Because I'm easy come, easy go\n"
49     L"Little high, little low"
50     L"Anyway the wind blows\n"
51     L"Doesn't really matter to me\n"
52     L"To me\n"
53     L"                      -- Queen\n";
54
55   const size_t len = sizeof(str) / sizeof(str[0]) - 1;
56   
57   const ctype_base::mask masks[] = {    
58     ctype_base::space, ctype_base::print, ctype_base::cntrl,
59     ctype_base::upper, ctype_base::lower, ctype_base::alpha,
60     ctype_base::digit, ctype_base::punct, ctype_base::xdigit,
61     ctype_base::alnum, ctype_base::graph
62   };
63
64   const size_t num_masks = sizeof(masks) / sizeof(masks[0]);
65   
66   locale loc;
67   const ctype<wchar_t>& ct = use_facet<ctype<wchar_t> >(loc);
68   
69   for (size_t i = 0; i < len; ++i)
70     {
71       for (size_t j = 0; j < num_masks; ++j)
72         {
73           for (size_t k = 0; k < num_masks; ++k)
74             {
75               bool r1 = ct.is(masks[j] | masks[k], str[i]);
76               bool r2 = ct.is(masks[j], str[i]);
77               bool r3 = ct.is(masks[k], str[i]);
78               
79               VERIFY( r1 == (r2 || r3) );
80             }
81         }
82     }
83 }
84
85 int main()
86 {
87   test01();
88   return 0;
89 }