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