Update contrib.
1 // (C) Copyright Gennadiy Rozental 2005.
2 // Distributed under the Boost Software License, Version 1.0.
3 // (See accompanying file LICENSE_1_0.txt or copy at
4 // http://www.boost.org/LICENSE_1_0.txt)
6 // See http://www.boost.org/libs/test for the library home page.
8 // File : $RCSfile: exception_safety.hpp,v $
10 // Version : $Revision: 1.4 $
12 // Description : Facilities to perform exception safety tests
13 // ***************************************************************************
15 #ifndef BOOST_TEST_EXCEPTION_SAFETY_HPP_111705GER
16 #define BOOST_TEST_EXCEPTION_SAFETY_HPP_111705GER
19 #include <boost/test/detail/config.hpp>
21 #include <boost/test/utils/callback.hpp>
26 #include <boost/test/detail/suppress_warnings.hpp>
28 //____________________________________________________________________________//
30 // ************************************************************************** //
31 // ************** BOOST_TEST_EXCEPTION_SAFETY ************** //
32 // ************************************************************************** //
34 #define BOOST_TEST_EXCEPTION_SAFETY( test_name ) \
35 struct test_name : public BOOST_AUTO_TEST_CASE_FIXTURE \
36 { void test_method(); }; \
38 static void BOOST_AUTO_TC_INVOKER( test_name )() \
41 ::boost::itest::exception_safety( \
42 boost::bind( &test_name::test_method, t ), \
43 BOOST_STRINGIZE(test_name) ); \
46 struct BOOST_AUTO_TC_UNIQUE_ID( test_name ) {}; \
48 BOOST_AUTO_TC_REGISTRAR( test_name )( \
49 boost::unit_test::make_test_case( \
50 &BOOST_AUTO_TC_INVOKER( test_name ), #test_name ), \
51 boost::unit_test::ut_detail::auto_tc_exp_fail< \
52 BOOST_AUTO_TC_UNIQUE_ID( test_name )>::value ); \
54 void test_name::test_method() \
61 // ************************************************************************** //
62 // ************** exception safety test ************** //
63 // ************************************************************************** //
65 void BOOST_TEST_DECL exception_safety( unit_test::callback0<> const& F,
66 unit_test::const_string test_name = "" );
72 // ************************************************************************** //
73 // ************** global operator new/delete overloads ************** //
74 // ************************************************************************** //
76 #ifndef BOOST_ITEST_NO_NEW_OVERLOADS
78 #include <boost/test/interaction_based.hpp>
80 # ifdef BOOST_NO_STDC_NAMESPACE
81 namespace std { using ::isprint; using ::malloc; using ::free; }
85 operator new( std::size_t s ) throw(std::bad_alloc)
87 void* res = std::malloc(s ? s : 1);
90 ::boost::itest::manager::instance().allocated( 0, 0, res, s );
92 throw std::bad_alloc();
97 //____________________________________________________________________________//
100 operator new( std::size_t s, std::nothrow_t const& ) throw()
102 void* res = std::malloc(s ? s : 1);
105 ::boost::itest::manager::instance().allocated( 0, 0, res, s );
110 //____________________________________________________________________________//
113 operator new[]( std::size_t s ) throw(std::bad_alloc)
115 void* res = std::malloc(s ? s : 1);
118 ::boost::itest::manager::instance().allocated( 0, 0, res, s );
120 throw std::bad_alloc();
125 //____________________________________________________________________________//
128 operator new[]( std::size_t s, std::nothrow_t const& ) throw()
130 void* res = std::malloc(s ? s : 1);
133 ::boost::itest::manager::instance().allocated( 0, 0, res, s );
138 //____________________________________________________________________________//
141 operator delete( void* p ) throw()
143 ::boost::itest::manager::instance().freed( p );
148 //____________________________________________________________________________//
151 operator delete( void* p, std::nothrow_t const& ) throw()
153 ::boost::itest::manager::instance().freed( p );
158 //____________________________________________________________________________//
161 operator delete[]( void* p ) throw()
163 ::boost::itest::manager::instance().freed( p );
168 //____________________________________________________________________________//
171 operator delete[]( void* p, std::nothrow_t const& ) throw()
173 ::boost::itest::manager::instance().freed( p );
178 //____________________________________________________________________________//
180 #endif // BOOST_ITEST_NO_NEW_OVERLOADS
182 //____________________________________________________________________________//
184 #include <boost/test/detail/enable_warnings.hpp>
186 // ***************************************************************************
187 // Revision History :
189 // $Log: exception_safety.hpp,v $
190 // Revision 1.4 2006/01/28 08:52:35 rogeeff
191 // operator new overloads made inline to:
192 // 1. prevent issues with export them from DLL
193 // 2. release link issue fixed
195 // Revision 1.3 2006/01/15 11:14:38 rogeeff
196 // simpl_mock -> mock_object<>::prototype()
197 // operator new need to be rethinked
199 // Revision 1.2 2005/12/20 23:50:13 rogeeff
200 // unit_test.hpp removed
202 // Revision 1.1 2005/12/14 05:03:46 rogeeff
203 // exception safety automatic testing facilties
205 // ***************************************************************************
207 #endif // BOOST_TEST_EXCEPTION_SAFETY_HPP_111705GER