2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / libstdc++-v3 / testsuite / 23_containers / vector / capacity / 8230.cc
blobfe706a4b56aa208ee7f8666883562091db25aa74
1 // 1999-05-07
2 // bkoz
4 // Copyright (C) 1999, 2002, 2003 Free Software Foundation, Inc.
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
9 // Free Software Foundation; either version 2, or (at your option)
10 // any later version.
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.
17 // You should have received a copy of the GNU General Public License along
18 // with this library; see the file COPYING. If not, write to the Free
19 // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
20 // USA.
22 // 23.2.4.2 vector capacity
24 #include <vector>
25 #include <stdexcept>
26 #include <testsuite_allocator.h>
27 #include <testsuite_hooks.h>
29 // libstdc++/8230
30 void test02()
32 bool test __attribute__((unused)) = true;
34 std::vector<int> array;
35 const std::size_t size = array.max_size();
36 try
38 array.reserve(size);
40 catch (const std::length_error& error)
42 test &= false;
44 catch (const std::bad_alloc& error)
46 test &= true;
48 catch (...)
50 test &= false;
52 VERIFY( test );
56 std::vector<int> array;
57 const std::size_t size = array.max_size() + 1;
58 try
60 array.reserve(size);
62 catch (const std::length_error& error)
64 test &= true;
66 catch (...)
68 test &= false;
70 VERIFY( test );
74 int main()
76 test02();
77 return 0;