]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/27_io/manipulators/extended/put_time/wchar_t/2.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / manipulators / extended / put_time / wchar_t / 2.cc
CommitLineData
52066eae 1// { dg-do run { target c++11 } }
e1becf59 2// { dg-require-namedlocale "de_DE.UTF-8" }
ffffc732
RS
3
4// 2014-04-14 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5
83ffe9cd 6// Copyright (C) 2014-2023 Free Software Foundation, Inc.
ffffc732
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 <testsuite_hooks.h>
29
30void test01()
31{
32 using namespace std;
ffffc732 33 locale loc_c = locale::classic();
4216708a 34 locale loc_de = locale("de_DE.UTF-8");
ffffc732
RS
35 VERIFY( loc_de != loc_c );
36 wostringstream oss;
37 oss.imbue(loc_de);
38 const tm time1 = __gnu_test::test_tm(0, 0, 12, 4, 3, 71, 0, 93, 0);
39 oss << put_time(&time1, L"%A %Y");
40 VERIFY(oss.str() == L"Sonntag 1971");
41}
42
43int main()
44{
45 test01();
46}