2013-07-09 Tim Shen <timshen91@gmail.com>
[official-gcc.git] / libstdc++-v3 / testsuite / 28_regex / traits / wchar_t / isctype.cc
blob327fc56416b0fa2b4746f0482d594094acbc6c3f
1 // { dg-do run }
2 // { dg-options "-std=c++0x" }
4 // Copyright (C) 2010-2013 Free Software Foundation, Inc.
5 //
6 // This file is part of the GNU ISO C++ Library. This library is free
7 // software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the
9 // Free Software Foundation; either version 3, or (at your option)
10 // any later version.
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 // GNU General Public License for more details.
17 // You should have received a copy of the GNU General Public License along
18 // with this library; see the file COPYING3. If not see
19 // <http://www.gnu.org/licenses/>.
21 // 28.3 Requirements [re.req]
22 // 28.2(4) Table 127 - Regular expression traits class requirements
23 // 28.7(11) Class template regex_traits [re.traits]
25 #include <regex>
26 #include <testsuite_hooks.h>
28 void
29 test01()
31 bool test __attribute__((unused)) = true;
32 typedef wchar_t CharT;
33 typedef std::regex_traits<CharT> traits;
35 const CharT lower[] = L"lOWer";
36 const CharT upper[] = L"UPPER";
37 const CharT nothing[] = L"nothing";
38 const CharT word[] = L"w";
39 const CharT blank[] = L"blank";
40 const CharT digit[] = L"digit";
41 traits t;
43 #define range(s) s, s+sizeof(s)/sizeof(s[0])-1
44 VERIFY( t.isctype(L'_', t.lookup_classname(range(word))));
45 VERIFY( t.isctype(L'A', t.lookup_classname(range(word))));
46 VERIFY(!t.isctype(L'~', t.lookup_classname(range(word))));
47 VERIFY(!t.isctype(L'e', t.lookup_classname(range(upper))));
48 VERIFY( t.isctype(L'e', t.lookup_classname(range(lower))));
49 VERIFY(!t.isctype(L'e', t.lookup_classname(range(nothing))));
50 VERIFY(!t.isctype(L'_', t.lookup_classname(range(digit))));
51 VERIFY( t.isctype(L' ', t.lookup_classname(range(blank))));
52 VERIFY( t.isctype(L'\t', t.lookup_classname(range(blank))));
53 VERIFY(!t.isctype(L'\n', t.lookup_classname(range(blank))));
54 VERIFY( t.isctype(L't', t.lookup_classname(range(upper), true)));
55 VERIFY( t.isctype(L'T', t.lookup_classname(range(lower), true)));
56 #undef range
59 int main()
61 test01();
62 return 0;