]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/23_containers/vector/capacity/8230.cc
Reshuffle 23_containers testsuite.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 23_containers / vector / capacity / 8230.cc
1 // 1999-05-07
2 // bkoz
3
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.
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
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.
21
22 // 23.2.4.2 vector capacity
23
24 #include <vector>
25 #include <stdexcept>
26 #include <testsuite_allocator.h>
27 #include <testsuite_hooks.h>
28
29 // libstdc++/8230
30 void test02()
31 {
32 bool test = true;
33 {
34 std::vector<int> array;
35 const std::size_t size = array.max_size();
36 try
37 {
38 array.reserve(size);
39 }
40 catch (const std::length_error& error)
41 {
42 test &= false;
43 }
44 catch (const std::bad_alloc& error)
45 {
46 test &= true;
47 }
48 catch (...)
49 {
50 test &= false;
51 }
52 VERIFY( test );
53 }
54
55 {
56 std::vector<int> array;
57 const std::size_t size = array.max_size() + 1;
58 try
59 {
60 array.reserve(size);
61 }
62 catch (const std::length_error& error)
63 {
64 test &= true;
65 }
66 catch (...)
67 {
68 test &= false;
69 }
70 VERIFY( test );
71 }
72 }
73
74 int main()
75 {
76 test02();
77 return 0;
78 }