Reverting merge from trunk
[official-gcc.git] / libstdc++-v3 / testsuite / 20_util / shared_ptr / assign / move.cc
blob914982f737db070b6157ee68d9bd26fba9ed5e9d
1 // { dg-options "-std=gnu++0x" }
3 // Copyright (C) 2007-2013 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.
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 COPYING3. If not see
18 // <http://www.gnu.org/licenses/>.
20 // 20.6.6.2 Template class shared_ptr [util.smartptr.shared]
22 #include <memory>
23 #include <utility>
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 struct reset_count_struct
48 ~reset_count_struct()
50 A::ctor_count = 0;
51 A::dtor_count = 0;
52 B::ctor_count = 0;
53 B::dtor_count = 0;
58 // 20.6.6.2.1 shared_ptr constructors [util.smartptr.shared.const]
60 // Rvalue assignment from shared_ptr
61 void
62 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(new A);
70 a1 = std::move(a2);
71 VERIFY( a1.get() != 0 );
72 VERIFY( a2.get() == 0 );
73 VERIFY( a1.use_count() == 1 );
74 VERIFY( a2.use_count() == 0 );
75 VERIFY( A::ctor_count == 1 );
76 VERIFY( A::dtor_count == 0 );
78 a1 = std::move(std::shared_ptr<A>());
79 VERIFY( a1.get() == 0 );
80 VERIFY( A::ctor_count == 1 );
81 VERIFY( A::dtor_count == 1 );
84 // Rvalue assignment from shared_ptr<Y>
85 void
86 test02()
88 reset_count_struct __attribute__((unused)) reset;
89 bool test __attribute__((unused)) = true;
91 std::shared_ptr<A> a;
92 std::shared_ptr<B> b(new B);
94 a = std::move(b);
95 VERIFY( a.get() != 0 );
96 VERIFY( b.get() == 0 );
97 VERIFY( a.use_count() == 1 );
98 VERIFY( b.use_count() == 0 );
99 VERIFY( A::ctor_count == 1 );
100 VERIFY( A::dtor_count == 0 );
101 VERIFY( B::ctor_count == 1 );
102 VERIFY( B::dtor_count == 0 );
104 a = std::move(std::shared_ptr<A>());
105 VERIFY( a.get() == 0 );
106 VERIFY( A::ctor_count == 1 );
107 VERIFY( A::dtor_count == 1 );
108 VERIFY( B::ctor_count == 1 );
109 VERIFY( B::dtor_count == 1 );
112 int
113 main()
115 test01();
116 test02();
117 return 0;