]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/27_io/basic_ostream/inserters_other/wchar_t/error_code.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / basic_ostream / inserters_other / wchar_t / error_code.cc
CommitLineData
52066eae 1// { dg-do run { target c++11 } }
2e0814c8 2// { dg-require-swprintf "" }
0646d8a3 3
83ffe9cd 4// Copyright (C) 2007-2023 Free Software Foundation, Inc.
0646d8a3
BK
5//
6// This file is part of the GNU ISO C++ Library. This library is free
7// software; you can redistribute it and/or modify it under the
8// terms of the GNU General Public License as published by the
748086b7 9// Free Software Foundation; either version 3, or (at your option)
0646d8a3
BK
10// any later version.
11
12// This library is distributed in the hope that it will be useful,
13// but WITHOUT ANY WARRANTY; without even the implied warranty of
14// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15// GNU General Public License for more details.
16
17// You should have received a copy of the GNU General Public License along
748086b7
JJ
18// with this library; see the file COPYING3. If not see
19// <http://www.gnu.org/licenses/>.
0646d8a3
BK
20
21#include <ostream>
22#include <sstream>
23#include <system_error>
24#include <algorithm>
c8061de7 25#include <cwchar>
0646d8a3
BK
26#include <testsuite_hooks.h>
27
28// Effects: os << ec.category().name() << ':' << ec.value();
29void test()
30{
31 using namespace std;
0646d8a3
BK
32
33 wchar_t buf[64];
34 error_code e1;
bb81f9a0 35 error_code e2(make_error_code(errc::bad_address));
0646d8a3
BK
36 wstring s, s1, s2;
37
38 {
39 wostringstream ostr;
40 ostr << e1 << endl;
41 s1 = ostr.str();
42
43 if (ostr.rdstate() & ios_base::eofbit)
fd0bf20c 44 VERIFY( false );
0646d8a3 45 }
fd0bf20c 46
0646d8a3
BK
47 VERIFY( find(s1.begin(), s1.end(), L':') != s1.end() );
48
49 swprintf(buf, 64, L"%i", e1.value());
50 s = buf;
fd0bf20c 51 VERIFY( s1.find(s) != string::npos );
0646d8a3
BK
52
53 {
54 wostringstream ostr;
55 ostr << e2 << endl;
56 s2 = ostr.str();
57
58 if (ostr.rdstate() & ios_base::eofbit)
fd0bf20c 59 VERIFY( false );
0646d8a3 60 }
fd0bf20c 61
0646d8a3
BK
62 VERIFY( find(s2.begin(), s2.end(), L':') != s2.end() );
63
64 swprintf(buf, 64, L"%i", e2.value());
65 s = buf;
fd0bf20c 66 VERIFY( s2.find(s) != string::npos );
0646d8a3
BK
67}
68
69int
70main()
71{
72 test();
73 return 0;
74}