]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/27_io/manipulators/extended/put_time/char/2.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / manipulators / extended / put_time / char / 2.cc
1 // { dg-require-namedlocale "de_DE.utf8" }
2 // { dg-options " -std=gnu++11 " }
3
4 // 2014-04-14 RĂ¼diger Sonderfeld <ruediger@c-plusplus.de>
5
6 // Copyright (C) 2014-2015 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 <testsuite_hooks.h>
29
30 void test01()
31 {
32 using namespace std;
33 bool test __attribute__((unused)) = true;
34 locale loc_c = locale::classic();
35 locale loc_de = locale("de_DE.utf8");
36 VERIFY( loc_de != loc_c );
37 ostringstream oss;
38 oss.imbue(loc_de);
39 const tm time1 = __gnu_test::test_tm(0, 0, 12, 4, 3, 71, 0, 93, 0);
40 oss << put_time(&time1, "%A %Y");
41 VERIFY(oss.str() == "Sonntag 1971");
42 }
43
44 int main()
45 {
46 test01();
47 }