]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/27_io/manipulators/extended/get_time/wchar_t/2.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / manipulators / extended / get_time / wchar_t / 2.cc
CommitLineData
52066eae 1// { dg-do run { target c++11 } }
e1becf59 2// { dg-require-namedlocale "de_DE.UTF-8" }
0de0b10c
RS
3
4// 2014-04-14 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5
a5544970 6// Copyright (C) 2014-2019 Free Software Foundation, Inc.
0de0b10c
RS
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
11// Free Software Foundation; either version 3, or (at your option)
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
20// with this library; see the file COPYING3. If not see
21// <http://www.gnu.org/licenses/>.
22
23// 27.7.5. (C++11) Extended manipulators [ext.manip]: put_time
24
25#include <locale>
26#include <sstream>
27#include <iomanip>
28#include <iostream>
29#include <testsuite_hooks.h>
30
31void test01()
32{
33 using namespace std;
0de0b10c 34 locale loc_c = locale::classic();
4216708a 35 locale loc_de = locale("de_DE.UTF-8");
0de0b10c
RS
36 VERIFY( loc_de != loc_c );
37 wistringstream iss;
38 iss.imbue(loc_de);
39 iss.str(L"Montag 1971");
40 tm time1;
41 iss >> get_time(&time1, L"%A %Y");
42 VERIFY(time1.tm_wday == 1);
43 VERIFY(time1.tm_year == 71);
44}
45
46int main()
47{
48 test01();
49}