1 //===----------------------------------------------------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is dual licensed under the MIT and the University of Illinois Open
6 // Source Licenses. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 // Copyright (C) 2011 Vicente J. Botet Escriba
10 //
11 //  Distributed under the Boost Software License, Version 1.0. (See accompanying
12 //  file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
13 
14 // <boost/thread/thread.hpp>
15 
16 // class thread
17 
18 // ~thread();
19 
20 #define BOOST_THREAD_PROVIDES_THREAD_DESTRUCTOR_CALLS_TERMINATE_IF_JOINABLE
21 
22 #include <boost/thread/thread_only.hpp>
23 #include <new>
24 #include <cstdlib>
25 #include <boost/detail/lightweight_test.hpp>
26 
27 class G
28 {
29   int alive_;
30 public:
31   static int n_alive;
32   static bool op_run;
33 
G()34   G() :
35     alive_(1)
36   {
37     ++n_alive;
38   }
G(const G & g)39   G(const G& g) :
40     alive_(g.alive_)
41   {
42     ++n_alive;
43   }
~G()44   ~G()
45   {
46     alive_ = 0;
47     --n_alive;
48   }
49 
operator ()()50   void operator()()
51   {
52     BOOST_TEST(alive_ == 1);
53     //BOOST_TEST(n_alive == 1);
54     op_run = true;
55   }
56 };
57 
58 int G::n_alive = 0;
59 bool G::op_run = false;
60 
f1()61 void f1()
62 {
63   std::exit(boost::report_errors());
64 }
65 
main()66 int main()
67 {
68   std::set_terminate(f1);
69   {
70     BOOST_TEST(G::n_alive == 0);
71     BOOST_TEST(!G::op_run);
72     boost::thread t( (G()));
73 #if defined BOOST_THREAD_USES_CHRONO
74     boost::this_thread::sleep_for(boost::chrono::milliseconds(250));
75 #endif
76     BOOST_TEST(t.joinable());
77   }
78   BOOST_TEST(false);
79   return boost::report_errors();
80 }
81 
82