Imported Upstream version 4.7.2
[platform/upstream/gcc48.git] / libstdc++-v3 / testsuite / ext / mt_allocator / deallocate_local-6.cc
1 // { dg-require-cxa-atexit "" }
2
3 // Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009
4 // Free Software Foundation, Inc.
5 //
6 // This file is part of the GNU ISO C++ Library.  This library is free
7 // software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the
9 // Free Software Foundation; either version 3, or (at your option)
10 // any later version.
11 //
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 // GNU General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License along
18 // with this library; see the file COPYING3.  If not see
19 // <http://www.gnu.org/licenses/>.
20
21 // 20.4.1.1 allocator members
22
23 #include <string>
24 #include <stdexcept>
25 #include <cstdio>
26 #include <ext/mt_allocator.h>
27 #include <replacement_memory_operators.h>
28
29 template<bool _Thread>
30   struct cleanup_pool : public __gnu_cxx::__pool<false>
31   {
32     cleanup_pool() : __gnu_cxx::__pool<false>() { }
33
34     cleanup_pool(const __gnu_cxx::__pool_base::_Tune& t) 
35     : __gnu_cxx::__pool<false>(t) { }
36
37     ~cleanup_pool() throw() { this->_M_destroy(); }
38   };
39
40
41 typedef char value_type;
42 typedef std::char_traits<value_type> traits_type;
43 typedef __gnu_cxx::__common_pool_policy<cleanup_pool, false> policy_type;
44 typedef __gnu_cxx::__mt_alloc<value_type, policy_type> allocator_type;
45 typedef std::basic_string<value_type, traits_type, allocator_type> string_type;
46
47 int main()
48 {
49   // NB: __mt_allocator doesn't clean itself up. Thus, the count will
50   // not be zero.
51   __gnu_test::counter::exceptions(false);
52   string_type s;
53   s += "bayou bend";
54   return 0;
55 }