OSDN Git Service

2007-12-15 Jonathan Wakely <jwakely-gcc@gmail.com>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 20_util / shared_ptr / assign / auto_ptr.cc
1 // { dg-options "-std=gnu++0x" }
2
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.
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 COPYING.  If not, write to the Free
18 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19 // USA.
20
21 // 20.6.6.2 Template class shared_ptr [util.smartptr.shared]
22
23 #include <memory>
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
47 struct reset_count_struct
48 {
49   ~reset_count_struct()
50   {
51     A::ctor_count = 0;
52     A::dtor_count = 0;
53     B::ctor_count = 0;
54     B::dtor_count = 0;
55   }
56 };
57
58
59 // 20.6.6.2.3 shared_ptr assignment [util.smartptr.shared.assign]
60
61 // Assignment from auto_ptr<Y>
62 int
63 test01()
64 {
65   reset_count_struct __attribute__((unused)) reset;
66   bool test __attribute__((unused)) = true;
67
68   std::shared_ptr<A> a(new A);
69   std::auto_ptr<B> b(new B);
70   a = b;
71   VERIFY( a.get() != 0 );
72   VERIFY( b.get() == 0 );
73   VERIFY( A::ctor_count == 2 );
74   VERIFY( A::dtor_count == 1 );
75   VERIFY( B::ctor_count == 1 );
76   VERIFY( B::dtor_count == 0 );
77
78   return 0;
79 }
80
81 int 
82 main()
83 {
84   test01();
85   return 0;
86 }