Merge -r 127928:132243 from trunk
[official-gcc.git] / libstdc++-v3 / testsuite / 20_util / shared_ptr / cons / copy.cc
blobb802e4366a3ef6995fc17b395fc6db647d6559df
1 // { dg-options "-std=gnu++0x" }
3 // Copyright (C) 2005, 2006, 2007 Free Software Foundation
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 2, or (at your option)
9 // any later version.
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.
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING. If not, write to the Free
18 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19 // USA.
21 // 20.6.6.2 Template class shared_ptr [util.smartptr.shared]
23 #include <memory>
24 #include <testsuite_hooks.h>
26 struct A
28 A() { ++ctor_count; }
29 virtual ~A() { ++dtor_count; }
30 static long ctor_count;
31 static long dtor_count;
33 long A::ctor_count = 0;
34 long A::dtor_count = 0;
36 struct B : A
38 B() { ++ctor_count; }
39 virtual ~B() { ++dtor_count; }
40 static long ctor_count;
41 static long dtor_count;
43 long B::ctor_count = 0;
44 long B::dtor_count = 0;
46 void deleter(A* p) { delete p; }
48 struct reset_count_struct
50 ~reset_count_struct()
52 A::ctor_count = 0;
53 A::dtor_count = 0;
54 B::ctor_count = 0;
55 B::dtor_count = 0;
59 // 20.6.6.2.1 shared_ptr constructors [util.smartptr.shared.const]
61 // Copy construction
62 int test01()
64 reset_count_struct __attribute__((unused)) reset;
65 bool test __attribute__((unused)) = true;
67 std::shared_ptr<A> a1;
68 std::shared_ptr<A> a2(a1);
69 VERIFY( a2.use_count() == 0 );
70 VERIFY( A::ctor_count == 0 );
71 VERIFY( A::dtor_count == 0 );
72 VERIFY( B::ctor_count == 0 );
73 VERIFY( B::dtor_count == 0 );
75 return 0;
78 int
79 test02()
81 reset_count_struct __attribute__((unused)) reset;
82 bool test __attribute__((unused)) = true;
84 std::shared_ptr<A> a1(new A);
85 std::shared_ptr<A> a2(a1);
86 VERIFY( a2.use_count() == 2 );
87 VERIFY( A::ctor_count == 1 );
88 VERIFY( A::dtor_count == 0 );
89 VERIFY( B::ctor_count == 0 );
90 VERIFY( B::dtor_count == 0 );
92 return 0;
95 int
96 test03()
98 reset_count_struct __attribute__((unused)) reset;
99 bool test __attribute__((unused)) = true;
101 std::shared_ptr<B> b(new B);
102 std::shared_ptr<A> a(b);
103 VERIFY( a.use_count() == 2 );
104 VERIFY( A::ctor_count == 1 );
105 VERIFY( A::dtor_count == 0 );
106 VERIFY( B::ctor_count == 1 );
107 VERIFY( B::dtor_count == 0 );
109 return 0;
113 test04()
115 reset_count_struct __attribute__((unused)) reset;
116 bool test __attribute__((unused)) = true;
118 std::shared_ptr<B> b(new B, &deleter);
119 std::shared_ptr<A> a(b);
120 VERIFY( a.use_count() == 2 );
121 VERIFY( A::ctor_count == 1 );
122 VERIFY( A::dtor_count == 0 );
123 VERIFY( B::ctor_count == 1 );
124 VERIFY( B::dtor_count == 0 );
126 return 0;
130 main()
132 test01();
133 test02();
134 test03();
135 test04();
136 return 0;