]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/22_locale/time_get/get_date/char/12750.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 22_locale / time_get / get_date / char / 12750.cc
CommitLineData
4216708a 1// { dg-require-namedlocale "is_IS.ISO8859-1" }
f63a8495 2
f20d2b78
PC
3// 2003-10-27 Paolo Carlini <pcarlini@suse.de>
4
99dee823 5// Copyright (C) 2003-2021 Free Software Foundation, Inc.
f20d2b78
PC
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
748086b7 10// Free Software Foundation; either version 3, or (at your option)
f20d2b78
PC
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
748086b7
JJ
19// with this library; see the file COPYING3. If not see
20// <http://www.gnu.org/licenses/>.
f20d2b78
PC
21
22// 22.2.5.1.1 time_get members
23
24#include <locale>
25#include <sstream>
26#include <testsuite_hooks.h>
27
28// libstdc++/12750
29void test01()
30{
31 using namespace std;
32 typedef istreambuf_iterator<char> iterator_type;
33
f20d2b78 34 // basic construction
4216708a 35 locale loc_is = locale(ISO_8859(1,is_IS));
f20d2b78
PC
36
37 // create an ostream-derived object, cache the time_get facet
38 iterator_type end;
39
40 istringstream iss;
41 const time_get<char>& tim_get = use_facet<time_get<char> >(iss.getloc());
42
43 const ios_base::iostate good = ios_base::goodbit;
44 ios_base::iostate errorstate = good;
45
46 // create "C" time objects
a98c14f4
PC
47 const tm time_bday01 = __gnu_test::test_tm(0, 0, 12, 2, 9, 103, 4, 274, -1);
48 const tm time_bday02 = __gnu_test::test_tm(0, 0, 12, 26, 9, 103, 0, 298, -1);
f20d2b78
PC
49
50 // inspection of named locales, is_IS
51 iss.imbue(loc_is);
52
53 iss.str("Fim 2.Okt 2003");
54 iterator_type is_it01(iss);
55 tm time01;
56 errorstate = good;
57 tim_get.get_date(is_it01, end, iss, errorstate, &time01);
58 VERIFY( time01.tm_mon == time_bday01.tm_mon );
59 VERIFY( time01.tm_mday == time_bday01.tm_mday );
60 VERIFY( time01.tm_year == time_bday01.tm_year );
61 VERIFY( errorstate == ios_base::eofbit );
62
63 iss.str("Sun 26.Okt 2003");
64 iterator_type is_it02(iss);
65 tm time02;
66 errorstate = good;
67 tim_get.get_date(is_it02, end, iss, errorstate, &time02);
68 VERIFY( time02.tm_mon == time_bday02.tm_mon );
69 VERIFY( time02.tm_mday == time_bday02.tm_mday );
70 VERIFY( time02.tm_year == time_bday02.tm_year );
71 VERIFY( errorstate == ios_base::eofbit );
72}
73
74int main()
75{
76 test01();
77 return 0;
78}