Reverting merge from trunk
[official-gcc.git] / libstdc++-v3 / testsuite / tr1 / 2_general_utilities / shared_ptr / modifiers / reset.cc
blobefd5c5f856d1ab0e75dde2acb96817fd57880676
1 // Copyright (C) 2005-2013 Free Software Foundation, Inc.
2 //
3 // This file is part of the GNU ISO C++ Library. This library is free
4 // software; you can redistribute it and/or modify it under the
5 // terms of the GNU General Public License as published by the
6 // Free Software Foundation; either version 3, or (at your option)
7 // any later version.
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License along
15 // with this library; see the file COPYING3. If not see
16 // <http://www.gnu.org/licenses/>.
18 // TR1 2.2.2 Template class shared_ptr [tr.util.smartptr.shared]
20 #include <tr1/memory>
21 #include <testsuite_hooks.h>
23 struct A { };
24 struct B : A { };
25 struct D
27 void operator()(B* p) { delete p; ++delete_count; }
28 static long delete_count;
30 long D::delete_count = 0;
32 // 2.2.3.4 shared_ptr modifiers [tr.util.smartptr.shared.mod]
34 // reset
35 int
36 test01()
38 bool test __attribute__((unused)) = true;
40 A * const a = new A;
41 std::tr1::shared_ptr<A> p1(a);
42 std::tr1::shared_ptr<A> p2(p1);
43 p1.reset();
44 VERIFY( p1.get() == 0 );
45 VERIFY( p2.get() == a );
47 return 0;
50 int
51 test02()
53 bool test __attribute__((unused)) = true;
55 A * const a = new A;
56 B * const b = new B;
57 std::tr1::shared_ptr<A> p1(a);
58 std::tr1::shared_ptr<A> p2(p1);
59 p1.reset(b);
60 VERIFY( p1.get() == b );
61 VERIFY( p2.get() == a );
63 return 0;
66 int
67 test03()
69 bool test __attribute__((unused)) = true;
72 std::tr1::shared_ptr<A> p1;
73 p1.reset(new B, D());
75 VERIFY( D::delete_count == 1 );
77 return 0;
80 int
81 main()
83 test01();
84 test02();
85 test03();
86 return 0;