]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/20_util/shared_ptr/assign/move.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 20_util / shared_ptr / assign / move.cc
1 // { dg-options "-std=gnu++11" }
2
3 // Copyright (C) 2007-2016 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 // 20.6.6.2 Template class shared_ptr [util.smartptr.shared]
21
22 #include <memory>
23 #include <utility>
24 #include <testsuite_hooks.h>
25
26 struct A
27 {
28 A() { ++ctor_count; }
29 virtual ~A() { ++dtor_count; }
30 static long ctor_count;
31 static long dtor_count;
32 };
33 long A::ctor_count = 0;
34 long A::dtor_count = 0;
35
36 struct B : A
37 {
38 B() { ++ctor_count; }
39 virtual ~B() { ++dtor_count; }
40 static long ctor_count;
41 static long dtor_count;
42 };
43 long B::ctor_count = 0;
44 long B::dtor_count = 0;
45
46 struct reset_count_struct
47 {
48 ~reset_count_struct()
49 {
50 A::ctor_count = 0;
51 A::dtor_count = 0;
52 B::ctor_count = 0;
53 B::dtor_count = 0;
54 }
55 };
56
57
58 // 20.6.6.2.1 shared_ptr constructors [util.smartptr.shared.const]
59
60 // Rvalue assignment from shared_ptr
61 void
62 test01()
63 {
64 reset_count_struct __attribute__((unused)) reset;
65 bool test __attribute__((unused)) = true;
66
67 std::shared_ptr<A> a1;
68 std::shared_ptr<A> a2(new A);
69
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 );
77
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 );
82 }
83
84 // Rvalue assignment from shared_ptr<Y>
85 void
86 test02()
87 {
88 reset_count_struct __attribute__((unused)) reset;
89 bool test __attribute__((unused)) = true;
90
91 std::shared_ptr<A> a;
92 std::shared_ptr<B> b(new B);
93
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 );
103
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 );
110 }
111
112 int
113 main()
114 {
115 test01();
116 test02();
117 return 0;
118 }