New std::string implementation.
[official-gcc.git] / libstdc++-v3 / testsuite / 27_io / ios_base / storage / 2.cc
blob0a2ed8c8d8666bd24cc79e4cd528d34d64c08d63
1 // 2000-12-19 bkoz
3 // Copyright (C) 2000-2014 Free Software Foundation, Inc.
4 //
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 3, or (at your option)
9 // any later version.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING3. If not see
18 // <http://www.gnu.org/licenses/>.
20 // 27.4.2.5 ios_base storage functions
22 // This fails on some versions of Darwin 8 because malloc doesn't return
23 // NULL even if an allocation fails (filed as Radar 3884894).
24 // { dg-do run { xfail *-*-darwin8.[0-4].* } }
26 // Skip test at -m64 on Darwin because RLIMITS are not being honored.
27 // Radar 6467883: 10.4/10.5 setrlimits are not honored by memory allocators
28 // Radar 6467884: 10.X systems are not robust when paging space is exceeded
29 // { dg-skip-if "" { *-*-darwin* && lp64 } { "*" } { "" } }
31 // The library still throws the original definition of std::ios::failure
32 // { dg-options "-D_GLIBCXX_USE_CXX11_ABI=0" }
34 #include <sstream>
35 #include <iostream>
36 #include <limits>
37 #include <testsuite_hooks.h>
39 // libstdc++/3129
40 void test02()
42 bool test __attribute__((unused)) = true;
43 int max = std::numeric_limits<int>::max() - 1;
44 std::stringbuf strbuf;
45 std::ios ios(&strbuf);
47 ios.exceptions(std::ios::badbit);
49 long l = 0;
50 void* v = 0;
52 // pword
53 ios.pword(1) = v;
54 VERIFY( ios.pword(1) == v );
56 try
58 v = ios.pword(max);
60 catch(std::ios_base::failure& obj)
62 // Ok.
63 VERIFY( ios.bad() );
65 catch(...)
67 test = false;
68 VERIFY( test );
70 VERIFY( v == 0 );
72 VERIFY( ios.pword(1) == v );
74 // max is different code path from max-1
75 v = &test;
76 try
78 v = ios.pword(std::numeric_limits<int>::max());
80 catch(std::ios_base::failure& obj)
82 // Ok.
83 VERIFY( ios.bad() );
85 catch(...)
87 test = false;
88 VERIFY( test );
90 VERIFY( v == &test );
92 // iword
93 ios.iword(1) = 1;
94 VERIFY( ios.iword(1) == 1 );
96 try
98 l = ios.iword(max);
100 catch(std::ios_base::failure& obj)
102 // Ok.
103 VERIFY( ios.bad() );
105 catch(...)
107 test = false;
108 VERIFY( test );
110 VERIFY( l == 0 );
112 VERIFY( ios.iword(1) == 1 );
114 // max is different code path from max-1
115 l = 1;
116 try
118 l = ios.iword(std::numeric_limits<int>::max());
120 catch(std::ios_base::failure& obj)
122 // Ok.
123 VERIFY( ios.bad() );
125 catch(...)
127 test = false;
128 VERIFY( test );
130 VERIFY( l == 1 );
134 int main(void)
136 __gnu_test::set_memory_limits();
137 test02();
138 return 0;