OSDN Git Service

407f6ed390bb4a21d4dbd46c5f556b4afd196ebc
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 23_containers / vector / resize / moveable.cc
1 // { dg-options "-std=gnu++0x" }
2
3 // Copyright (C) 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
4 //
5 // This file is part of the GNU ISO C++ Library.  This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 3, or (at your option)
9 // any later version.
10
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 // GNU General Public License for more details.
15
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING3.  If not see
18 // <http://www.gnu.org/licenses/>.
19
20
21 #include <vector>
22 #include <testsuite_hooks.h>
23 #include <testsuite_rvalref.h>
24
25 using namespace __gnu_test;
26
27 // According to n1771, there should be two resizes, with and without
28 // parameter. We only have one at present, whose second parameter defaults
29 // to a default-constructed object.
30 // Also, the values are one higher than might be expected because internally
31 // resize calls fill, which copies its input value in case it is already in
32 // the vector when the vector isn't moved.
33 void
34 test01()
35 {
36   bool test __attribute__((unused)) = true;
37
38   std::vector<copycounter> a;
39   copycounter::copycount = 0;
40   a.resize(10);
41   a.resize(98);
42   a.resize(99);
43   a.resize(100);
44 #ifndef _GLIBCXX_DEBUG
45   VERIFY( copycounter::copycount == 100 + 1 );
46 #else
47   VERIFY( copycounter::copycount == 100 + 1 + 4 );
48 #endif
49   a.resize(99);
50   a.resize(0);
51 #ifndef _GLIBCXX_DEBUG
52   VERIFY( copycounter::copycount == 100 + 1 );
53 #else
54   VERIFY( copycounter::copycount == 100 + 1 + 6 );
55 #endif
56   a.resize(100);
57 #ifndef _GLIBCXX_DEBUG  
58   VERIFY( copycounter::copycount == 200 + 2 );
59 #else
60   VERIFY( copycounter::copycount == 200 + 2 + 7 );
61 #endif
62   a.clear();
63 #ifndef _GLIBCXX_DEBUG
64   VERIFY( copycounter::copycount == 200 + 2 );
65 #else
66   VERIFY( copycounter::copycount == 200 + 2 + 7 );
67 #endif
68 }
69
70
71 int main()
72 {
73   test01();
74   return 0;
75 }