aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3/testsuite/27_io/basic_ostream/inserters_other/wchar_t/error_code.cc
blob: a83c9cbb71d47022def0152c7fcac0f73fa1ad08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
// { dg-options "-std=gnu++0x" }

// Copyright (C) 2007 Free Software Foundation
//
// This file is part of the GNU ISO C++ Library.  This library is free
// software; you can redistribute it and/or modify it under the
// terms of the GNU General Public License as published by the
// Free Software Foundation; either version 2, or (at your option)
// any later version.

// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License along
// with this library; see the file COPYING.  If not, write to the Free
// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
// USA.

#include <ostream>
#include <sstream>
#include <system_error>
#include <algorithm>
#include <wchar.h>
#include <testsuite_hooks.h>

//   Effects: os << ec.category().name() << ':' << ec.value();
void test()
{
  using namespace std;
  bool test __attribute__((unused)) = true;

  wchar_t buf[64];
  error_code e1;
  error_code e2(bad_address);
  wstring s, s1, s2;

  {
    wostringstream ostr;
    ostr << e1 << endl;
    s1 = ostr.str();

    if (ostr.rdstate() & ios_base::eofbit) 
      test = false;
  }
  VERIFY( test );
  VERIFY( find(s1.begin(), s1.end(), L':') != s1.end() );

  swprintf(buf, 64, L"%i", e1.value());
  s = buf;
  VERIFY( s1.find(s) != string::npos);

  {
    wostringstream ostr;
    ostr << e2 << endl;
    s2 = ostr.str();

    if (ostr.rdstate() & ios_base::eofbit) 
      test = false;
  }
  VERIFY( test );
  VERIFY( find(s2.begin(), s2.end(), L':') != s2.end() );

  swprintf(buf, 64, L"%i", e2.value());
  s = buf;
  VERIFY( s2.find(s) != string::npos);
}

int 
main()
{
  test(); 
  return 0;
}