OSDN Git Service

2003-07-31 Benjamin Kosnik <bkoz@redhat.com>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 23_containers / vector / capacity / 1.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 template<typename T>
30   struct A { };
31
32 struct B { };
33
34 void test01()
35 {
36   // non POD types
37   bool test = true;
38   std::vector< A<B> > vec01;
39   typedef std::vector< A<B> >::size_type size_type;
40
41   size_type sz01 = vec01.capacity();
42   vec01.reserve(100);
43   size_type sz02 = vec01.capacity();
44   VERIFY( sz02 >= sz01 );
45   
46   sz01 = vec01.size() + 5;
47   vec01.resize(sz01);
48   sz02 = vec01.size();
49   VERIFY( sz01 == sz02 );
50
51   sz01 = vec01.size() - 5;
52   vec01.resize(sz01);
53   sz02 = vec01.size();
54   VERIFY( sz01 == sz02 );
55 }
56
57 int main()
58 {
59   test01();
60   return 0;
61 }