OSDN Git Service

Licensing changes to GPLv3 resp. GPLv3 with GCC Runtime Exception.
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 22_locale / time_get / get_monthname / char / 2.cc
1 // { dg-require-namedlocale "" }
2
3 // 2001-09-21 Benjamin Kosnik  <bkoz@redhat.com>
4
5 // Copyright (C) 2001, 2002, 2003, 2005, 2006, 2009 Free Software Foundation
6 //
7 // This file is part of the GNU ISO C++ Library.  This library is free
8 // software; you can redistribute it and/or modify it under the
9 // terms of the GNU General Public License as published by the
10 // Free Software Foundation; either version 3, or (at your option)
11 // any later version.
12
13 // This library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17
18 // You should have received a copy of the GNU General Public License along
19 // with this library; see the file COPYING3.  If not see
20 // <http://www.gnu.org/licenses/>.
21
22 // 22.2.5.1.1 time_get members
23
24 #include <locale>
25 #include <sstream>
26 #include <testsuite_hooks.h>
27
28 void test02()
29 {
30   using namespace std;
31   bool test __attribute__((unused)) = true;
32
33   typedef istreambuf_iterator<char> iterator_type;
34
35   // basic construction and sanity checks.
36   locale loc_c = locale::classic();
37   locale loc_hk = locale("en_HK");
38   locale loc_de = locale("de_DE");
39   VERIFY( loc_hk != loc_c );
40   VERIFY( loc_hk != loc_de );
41
42   const tm time_bday = __gnu_test::test_tm(0, 0, 12, 4, 3, 71, 0, 93, 0);
43
44   const string empty;
45
46   const ios_base::iostate good = ios_base::goodbit;
47   ios_base::iostate errorstate = good;
48
49   // create an ostream-derived object, cache the time_get facet
50   iterator_type end;
51
52   istringstream iss;
53   iss.imbue(loc_de);
54   const time_get<char>& tim_get = use_facet<time_get<char> >(iss.getloc()); 
55
56   // inspection of named locales, de_DE
57   iss.str("April");
58   iterator_type is_it10(iss);
59   tm time10;
60   errorstate = good;
61   tim_get.get_monthname(is_it10, end, iss, errorstate, &time10);
62   VERIFY( time10.tm_mon == time_bday.tm_mon );
63   VERIFY( errorstate == ios_base::eofbit );
64
65   // inspection of named locales, en_HK
66   iss.imbue(loc_hk);
67   const time_get<char>& tim_get2 = use_facet<time_get<char> >(iss.getloc()); 
68   iss.str("April"); 
69   iterator_type is_it20(iss);
70   tm time20;
71   errorstate = good;
72   tim_get2.get_monthname(is_it20, end, iss, errorstate, &time20);
73   VERIFY( time20.tm_mon == time_bday.tm_mon );
74   VERIFY( errorstate == ios_base::eofbit );
75 }
76
77 int main()
78 {
79   test02();
80   return 0;
81 }