OSDN Git Service

2010-01-03 Paolo Carlini <paolo.carlini@oracle.com>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 23_containers / vector / debug_mode_requires_reallocation-1.cc
1 // Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc.
2 //
3 // This file is part of the GNU ISO C++ Library.  This library is free
4 // software; you can redistribute it and/or modify it under the
5 // terms of the GNU General Public License as published by the
6 // Free Software Foundation; either version 3, or (at your option)
7 // any later version.
8
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 // GNU General Public License for more details.
13
14 // You should have received a copy of the GNU General Public License along
15 // with this library; see the file COPYING3.  If not see
16 // <http://www.gnu.org/licenses/>.
17
18 // NB: This issue affected only debug-mode.
19
20 #include <vector>
21 #include <algorithm>
22 #include <iterator>
23
24 // http://gcc.gnu.org/ml/libstdc++/2008-05/msg00039.html
25 void test01()
26 {
27   typedef std::vector<unsigned> array_t;
28   typedef std::back_insert_iterator<array_t> bii_t;
29
30   array_t a;
31
32   // Push 5 elements.
33   a.push_back(0);
34   a.push_back(1);
35   a.push_back(2);
36   a.push_back(3);
37   a.push_back(4);
38   // Ensure that there is enough space for other two elements.
39   // (2 + 5 = 7)
40   if (a.capacity() < 7)
41     a.reserve(7);
42   // Add two new elements.
43   std::copy(a.begin(), a.begin() + 2, bii_t(a));
44
45
46 int main()
47 {
48   test01();
49   return 0;
50 }