]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/22_locale/time_get/get_time/wchar_t/4.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 22_locale / time_get / get_time / wchar_t / 4.cc
CommitLineData
b8d65dac
PC
1// 2004-08-29 Paolo Carlini <pcarlini@suse.de>
2
8d9254fc 3// Copyright (C) 2004-2020 Free Software Foundation, Inc.
b8d65dac
PC
4//
5// This file is part of the GNU ISO C++ Library. This library is free
6// software; you can redistribute it and/or modify it under the
7// terms of the GNU General Public License as published by the
748086b7 8// Free Software Foundation; either version 3, or (at your option)
b8d65dac
PC
9// any later version.
10
11// This library is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14// GNU General Public License for more details.
15
16// You should have received a copy of the GNU General Public License along
748086b7
JJ
17// with this library; see the file COPYING3. If not see
18// <http://www.gnu.org/licenses/>.
b8d65dac
PC
19
20// 22.2.5.1.1 time_get members
21
22#include <locale>
23#include <sstream>
24#include <testsuite_hooks.h>
25
26// Allow for one leap-second (two if !_GLIBCXX_USE_C99).
27void test01()
28{
29 using namespace std;
b8d65dac
PC
30
31 typedef istreambuf_iterator<wchar_t> iterator_type;
32
33 // basic construction and sanity checks.
34 locale loc_c = locale::classic();
35
36 // create an istream-derived object, cache the time_get facet
37 iterator_type end;
38 wistringstream iss;
39 iss.imbue(loc_c);
40 const time_get<wchar_t>& tim_get =
41 use_facet<time_get<wchar_t> >(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 47 const tm time_bday = __gnu_test::test_tm(60, 0, 12, 4, 3, 71, 0, 93, 0);
b8d65dac
PC
48
49 iss.str(L"12:00:60 ");
50 iterator_type is_it01(iss);
51 tm time01;
52 errorstate = good;
53 tim_get.get_time(is_it01, end, iss, errorstate, &time01);
54 VERIFY( time01.tm_sec == time_bday.tm_sec );
55 VERIFY( errorstate == ios_base::goodbit );
56}
57
58int main()
59{
60 test01();
61 return 0;
62}