]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/tr1/2_general_utilities/shared_ptr/cons/weak_ptr_expired.cc
Licensing changes to GPLv3 resp. GPLv3 with GCC Runtime Exception.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / tr1 / 2_general_utilities / shared_ptr / cons / weak_ptr_expired.cc
CommitLineData
fcec20a7 1// { dg-do run { xfail *-*-* } }
748086b7 2// Copyright (C) 2005, 2009 Free Software Foundation
7dfded91
JW
3//
4// This file is part of the GNU ISO C++ Library. This library is free
5// software; you can redistribute it and/or modify it under the
6// terms of the GNU General Public License as published by the
748086b7 7// Free Software Foundation; either version 3, or (at your option)
7dfded91
JW
8// any later version.
9
10// This library is distributed in the hope that it will be useful,
11// but WITHOUT ANY WARRANTY; without even the implied warranty of
12// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13// GNU General Public License for more details.
14
15// You should have received a copy of the GNU General Public License along
748086b7
JJ
16// with this library; see the file COPYING3. If not see
17// <http://www.gnu.org/licenses/>.
7dfded91
JW
18
19// TR1 2.2.2 Template class shared_ptr [tr.util.smartptr.shared]
20
21#include <tr1/memory>
22#include <testsuite_hooks.h>
23
24struct A { };
25
26// 2.2.3.1 shared_ptr constructors [tr.util.smartptr.shared.const]
27
28// Construction from expired weak_ptr
29int
30test01()
31{
32 bool test __attribute__((unused)) = true;
33
34 std::tr1::shared_ptr<A> a1(new A);
35 std::tr1::weak_ptr<A> wa(a1);
36 a1.reset();
fcec20a7 37 VERIFY( wa.expired() );
7dfded91
JW
38 try
39 {
40 std::tr1::shared_ptr<A> a2(wa);
41 }
42 catch (const std::tr1::bad_weak_ptr&)
43 {
44 // Expected.
fcec20a7 45 __throw_exception_again;
7dfded91
JW
46 }
47 catch (...)
48 {
49 // Failed.
7dfded91 50 }
7dfded91
JW
51
52 return 0;
53}
54
55int
56main()
57{
58 test01();
59 return 0;
60}