]> git.ipfire.org Git - thirdparty/gcc.git/blob - 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
1 // { dg-require-namedlocale "de_DE.UTF-8" }
2 // { dg-options " -std=gnu++11 " }
3
4 // 2014-04-14 RĂ¼diger Sonderfeld <ruediger@c-plusplus.de>
5
6 // Copyright (C) 2014-2016 Free Software Foundation, Inc.
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
31 void test01()
32 {
33 using namespace std;
34 bool test __attribute__((unused)) = true;
35 locale loc_c = locale::classic();
36 locale loc_de = locale("de_DE.UTF-8");
37 VERIFY( loc_de != loc_c );
38 wistringstream iss;
39 iss.imbue(loc_de);
40 iss.str(L"Montag 1971");
41 tm time1;
42 iss >> get_time(&time1, L"%A %Y");
43 VERIFY(time1.tm_wday == 1);
44 VERIFY(time1.tm_year == 71);
45 }
46
47 int main()
48 {
49 test01();
50 }