]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/20_util/shared_ptr/cons/alias.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 20_util / shared_ptr / cons / alias.cc
CommitLineData
52066eae 1// { dg-do run { target c++11 } }
aaf0ca6f 2
99dee823 3// Copyright (C) 2007-2021 Free Software Foundation, Inc.
aaf0ca6f
JW
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
748086b7 8// Free Software Foundation; either version 3, or (at your option)
aaf0ca6f
JW
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
748086b7
JJ
17// with this library; see the file COPYING3. If not see
18// <http://www.gnu.org/licenses/>.
aaf0ca6f
JW
19
20// 20.6.6.2 Template class shared_ptr [util.smartptr.shared]
21
22#include <memory>
23#include <testsuite_hooks.h>
24
25struct A
26{
27 A() : i() { }
28 virtual ~A() { }
29 int i;
30};
31
32struct B : A
33{
34 B() : A(), a() { }
35 virtual ~B() { }
36 A a;
37};
38
aaf0ca6f
JW
39// 20.6.6.2.1 shared_ptr constructors [util.smartptr.shared.const]
40
41// Aliasing constructors
42
fb3fc4bd
JW
43void
44test01()
aaf0ca6f 45{
118c8424 46 bool test = true;
aaf0ca6f
JW
47
48 std::shared_ptr<A> a;
49 std::shared_ptr<bool> b1(a, &test);
50 VERIFY( b1.use_count() == 0 );
51 VERIFY( a.get() == 0 );
52 VERIFY( b1.get() == &test );
53
54 std::shared_ptr<bool> b2(b1);
55 VERIFY( b2.use_count() == 0 );
56 VERIFY( b1.get() == b2.get() );
aaf0ca6f
JW
57}
58
fb3fc4bd 59void
aaf0ca6f
JW
60test02()
61{
aaf0ca6f
JW
62 std::shared_ptr<A> a(new A);
63 std::shared_ptr<int> i1(a, &a->i);
64 VERIFY( i1.use_count() == 2 );
65
66 std::shared_ptr<int> i2(i1);
67 VERIFY( i2.use_count() == 3 );
68 VERIFY( i2.get() == &a->i );
aaf0ca6f
JW
69}
70
fb3fc4bd 71void
aaf0ca6f
JW
72test03()
73{
aaf0ca6f
JW
74 std::shared_ptr<B> b(new B);
75 std::shared_ptr<A> a1(b, b.get());
76 std::shared_ptr<A> a2(b, &b->a);
77 VERIFY( a2.use_count() == 3 );
78 VERIFY( a1 == b );
79 VERIFY( a2 != b );
80 VERIFY( a1.get() != a2.get() );
81
82 std::shared_ptr<A> a3(a1);
83 VERIFY( a3 == b );
84
85 a3 = a2;
86 VERIFY( a3.get() == &b->a );
aaf0ca6f
JW
87}
88
89int
90main()
91{
92 test01();
93 test02();
94 test03();
aaf0ca6f 95}