]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/22_locale/time_get/get_time/char/4.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 22_locale / time_get / get_time / char / 4.cc
1 // 2004-08-29 Paolo Carlini <pcarlini@suse.de>
2
3 // Copyright (C) 2004-2023 Free Software Foundation, Inc.
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
8 // Free Software Foundation; either version 3, or (at your option)
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
17 // with this library; see the file COPYING3. If not see
18 // <http://www.gnu.org/licenses/>.
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).
27 void test01()
28 {
29 using namespace std;
30
31 typedef istreambuf_iterator<char> 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 istringstream iss;
39 iss.imbue(loc_c);
40 const time_get<char>& tim_get =
41 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
47 const tm time_bday = __gnu_test::test_tm(60, 0, 12, 4, 3, 71, 0, 93, 0);
48
49 iss.str("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
58 int main()
59 {
60 test01();
61 return 0;
62 }