]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/23_containers/vector/capacity/8230.cc
re PR testsuite/39696 (gcc.dg/tree-ssa/ssa-ccp-25.c scan-tree-dump doesn't work on...
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 23_containers / vector / capacity / 8230.cc
CommitLineData
58c3ef5c
KG
1// 1999-05-07
2// bkoz
3
b0ea9c01 4// Copyright (C) 1999, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
58c3ef5c
KG
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
83f51799 19// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
58c3ef5c
KG
20// USA.
21
22// 23.2.4.2 vector capacity
23
58c3ef5c
KG
24#include <vector>
25#include <stdexcept>
17472bb6 26#include <testsuite_allocator.h>
58c3ef5c
KG
27#include <testsuite_hooks.h>
28
17472bb6
BK
29// libstdc++/8230
30void test02()
58c3ef5c 31{
11f10e6b 32 bool test __attribute__((unused)) = true;
17472bb6
BK
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 }
58c3ef5c
KG
72}
73
74int main()
75{
17472bb6 76 test02();
58c3ef5c
KG
77 return 0;
78}