OpenCores
URL https://opencores.org/ocsvn/scarts/scarts/trunk

Subversion Repositories scarts

[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [libstdc++-v3/] [testsuite/] [23_containers/] [vector/] [capacity/] [8230.cc] - Blame information for rev 19

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 19 jlechner
// 1999-05-07
2
// bkoz 
3
 
4
// Copyright (C) 1999, 2002, 2003, 2004, 2005 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, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
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 __attribute__((unused)) = 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
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.