diff -r 000000000000 -r bde4ae8d615e os/ossrv/ossrv_pub/boost_apis/boost/test/exception_safety.hpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/os/ossrv/ossrv_pub/boost_apis/boost/test/exception_safety.hpp Fri Jun 15 03:10:57 2012 +0200 @@ -0,0 +1,207 @@ +// (C) Copyright Gennadiy Rozental 2005. +// Distributed under the Boost Software License, Version 1.0. +// (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) + +// See http://www.boost.org/libs/test for the library home page. +// +// File : $RCSfile: exception_safety.hpp,v $ +// +// Version : $Revision: 1.4 $ +// +// Description : Facilities to perform exception safety tests +// *************************************************************************** + +#ifndef BOOST_TEST_EXCEPTION_SAFETY_HPP_111705GER +#define BOOST_TEST_EXCEPTION_SAFETY_HPP_111705GER + +// Boost.Test +#include + +#include + +// STL +#include + +#include + +//____________________________________________________________________________// + +// ************************************************************************** // +// ************** BOOST_TEST_EXCEPTION_SAFETY ************** // +// ************************************************************************** // + +#define BOOST_TEST_EXCEPTION_SAFETY( test_name ) \ +struct test_name : public BOOST_AUTO_TEST_CASE_FIXTURE \ +{ void test_method(); }; \ + \ +static void BOOST_AUTO_TC_INVOKER( test_name )() \ +{ \ + test_name t; \ + ::boost::itest::exception_safety( \ + boost::bind( &test_name::test_method, t ), \ + BOOST_STRINGIZE(test_name) ); \ +} \ + \ +struct BOOST_AUTO_TC_UNIQUE_ID( test_name ) {}; \ + \ +BOOST_AUTO_TC_REGISTRAR( test_name )( \ + boost::unit_test::make_test_case( \ + &BOOST_AUTO_TC_INVOKER( test_name ), #test_name ), \ + boost::unit_test::ut_detail::auto_tc_exp_fail< \ + BOOST_AUTO_TC_UNIQUE_ID( test_name )>::value ); \ + \ +void test_name::test_method() \ +/**/ + +namespace boost { + +namespace itest { + +// ************************************************************************** // +// ************** exception safety test ************** // +// ************************************************************************** // + +void BOOST_TEST_DECL exception_safety( unit_test::callback0<> const& F, + unit_test::const_string test_name = "" ); + +} // namespace itest + +} // namespace boost + +// ************************************************************************** // +// ************** global operator new/delete overloads ************** // +// ************************************************************************** // + +#ifndef BOOST_ITEST_NO_NEW_OVERLOADS + +#include + +# ifdef BOOST_NO_STDC_NAMESPACE +namespace std { using ::isprint; using ::malloc; using ::free; } +# endif + +inline void* +operator new( std::size_t s ) throw(std::bad_alloc) +{ + void* res = std::malloc(s ? s : 1); + + if( res ) + ::boost::itest::manager::instance().allocated( 0, 0, res, s ); + else + throw std::bad_alloc(); + + return res; +} + +//____________________________________________________________________________// + +inline void* +operator new( std::size_t s, std::nothrow_t const& ) throw() +{ + void* res = std::malloc(s ? s : 1); + + if( res ) + ::boost::itest::manager::instance().allocated( 0, 0, res, s ); + + return res; +} + +//____________________________________________________________________________// + +inline void* +operator new[]( std::size_t s ) throw(std::bad_alloc) +{ + void* res = std::malloc(s ? s : 1); + + if( res ) + ::boost::itest::manager::instance().allocated( 0, 0, res, s ); + else + throw std::bad_alloc(); + + return res; +} + +//____________________________________________________________________________// + +inline void* +operator new[]( std::size_t s, std::nothrow_t const& ) throw() +{ + void* res = std::malloc(s ? s : 1); + + if( res ) + ::boost::itest::manager::instance().allocated( 0, 0, res, s ); + + return res; +} + +//____________________________________________________________________________// + +inline void +operator delete( void* p ) throw() +{ + ::boost::itest::manager::instance().freed( p ); + + std::free( p ); +} + +//____________________________________________________________________________// + +inline void +operator delete( void* p, std::nothrow_t const& ) throw() +{ + ::boost::itest::manager::instance().freed( p ); + + std::free( p ); +} + +//____________________________________________________________________________// + +inline void +operator delete[]( void* p ) throw() +{ + ::boost::itest::manager::instance().freed( p ); + + std::free( p ); +} + +//____________________________________________________________________________// + +inline void +operator delete[]( void* p, std::nothrow_t const& ) throw() +{ + ::boost::itest::manager::instance().freed( p ); + + std::free( p ); +} + +//____________________________________________________________________________// + +#endif // BOOST_ITEST_NO_NEW_OVERLOADS + +//____________________________________________________________________________// + +#include + +// *************************************************************************** +// Revision History : +// +// $Log: exception_safety.hpp,v $ +// Revision 1.4 2006/01/28 08:52:35 rogeeff +// operator new overloads made inline to: +// 1. prevent issues with export them from DLL +// 2. release link issue fixed +// +// Revision 1.3 2006/01/15 11:14:38 rogeeff +// simpl_mock -> mock_object<>::prototype() +// operator new need to be rethinked +// +// Revision 1.2 2005/12/20 23:50:13 rogeeff +// unit_test.hpp removed +// +// Revision 1.1 2005/12/14 05:03:46 rogeeff +// exception safety automatic testing facilties +// +// *************************************************************************** + +#endif // BOOST_TEST_EXCEPTION_SAFETY_HPP_111705GER