os/ossrv/ossrv_pub/boost_apis/boost/test/exception_safety.hpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
//  (C) Copyright Gennadiy Rozental 2005.
sl@0
     2
//  Distributed under the Boost Software License, Version 1.0.
sl@0
     3
//  (See accompanying file LICENSE_1_0.txt or copy at 
sl@0
     4
//  http://www.boost.org/LICENSE_1_0.txt)
sl@0
     5
sl@0
     6
//  See http://www.boost.org/libs/test for the library home page.
sl@0
     7
//
sl@0
     8
//  File        : $RCSfile: exception_safety.hpp,v $
sl@0
     9
//
sl@0
    10
//  Version     : $Revision: 1.4 $
sl@0
    11
//
sl@0
    12
//  Description : Facilities to perform exception safety tests
sl@0
    13
// ***************************************************************************
sl@0
    14
sl@0
    15
#ifndef BOOST_TEST_EXCEPTION_SAFETY_HPP_111705GER
sl@0
    16
#define BOOST_TEST_EXCEPTION_SAFETY_HPP_111705GER
sl@0
    17
sl@0
    18
// Boost.Test
sl@0
    19
#include <boost/test/detail/config.hpp>
sl@0
    20
sl@0
    21
#include <boost/test/utils/callback.hpp>
sl@0
    22
sl@0
    23
// STL
sl@0
    24
#include <memory>
sl@0
    25
sl@0
    26
#include <boost/test/detail/suppress_warnings.hpp>
sl@0
    27
sl@0
    28
//____________________________________________________________________________//
sl@0
    29
sl@0
    30
// ************************************************************************** //
sl@0
    31
// **************          BOOST_TEST_EXCEPTION_SAFETY         ************** //
sl@0
    32
// ************************************************************************** //
sl@0
    33
sl@0
    34
#define BOOST_TEST_EXCEPTION_SAFETY( test_name )                        \
sl@0
    35
struct test_name : public BOOST_AUTO_TEST_CASE_FIXTURE                  \
sl@0
    36
{ void test_method(); };                                                \
sl@0
    37
                                                                        \
sl@0
    38
static void BOOST_AUTO_TC_INVOKER( test_name )()                        \
sl@0
    39
{                                                                       \
sl@0
    40
    test_name t;                                                        \
sl@0
    41
    ::boost::itest::exception_safety(                                   \
sl@0
    42
        boost::bind( &test_name::test_method, t ),                      \
sl@0
    43
        BOOST_STRINGIZE(test_name) );                                   \
sl@0
    44
}                                                                       \
sl@0
    45
                                                                        \
sl@0
    46
struct BOOST_AUTO_TC_UNIQUE_ID( test_name ) {};                         \
sl@0
    47
                                                                        \
sl@0
    48
BOOST_AUTO_TC_REGISTRAR( test_name )(                                   \
sl@0
    49
    boost::unit_test::make_test_case(                                   \
sl@0
    50
        &BOOST_AUTO_TC_INVOKER( test_name ), #test_name ),              \
sl@0
    51
    boost::unit_test::ut_detail::auto_tc_exp_fail<                      \
sl@0
    52
        BOOST_AUTO_TC_UNIQUE_ID( test_name )>::value );                 \
sl@0
    53
                                                                        \
sl@0
    54
void test_name::test_method()                                           \
sl@0
    55
/**/
sl@0
    56
sl@0
    57
namespace boost {
sl@0
    58
sl@0
    59
namespace itest {
sl@0
    60
sl@0
    61
// ************************************************************************** //
sl@0
    62
// **************             exception safety test            ************** //
sl@0
    63
// ************************************************************************** //
sl@0
    64
sl@0
    65
void    BOOST_TEST_DECL exception_safety( unit_test::callback0<> const& F, 
sl@0
    66
                                          unit_test::const_string test_name = "" );
sl@0
    67
sl@0
    68
} // namespace itest
sl@0
    69
sl@0
    70
} // namespace boost
sl@0
    71
sl@0
    72
// ************************************************************************** //
sl@0
    73
// **************     global operator new/delete overloads     ************** //
sl@0
    74
// ************************************************************************** //
sl@0
    75
sl@0
    76
#ifndef BOOST_ITEST_NO_NEW_OVERLOADS
sl@0
    77
sl@0
    78
#include <boost/test/interaction_based.hpp>
sl@0
    79
sl@0
    80
# ifdef BOOST_NO_STDC_NAMESPACE
sl@0
    81
namespace std { using ::isprint; using ::malloc; using ::free; }
sl@0
    82
# endif
sl@0
    83
sl@0
    84
inline void*
sl@0
    85
operator new( std::size_t s ) throw(std::bad_alloc)
sl@0
    86
{
sl@0
    87
    void* res = std::malloc(s ? s : 1);
sl@0
    88
sl@0
    89
    if( res )
sl@0
    90
        ::boost::itest::manager::instance().allocated( 0, 0, res, s );
sl@0
    91
    else
sl@0
    92
        throw std::bad_alloc();
sl@0
    93
sl@0
    94
    return res;
sl@0
    95
}
sl@0
    96
sl@0
    97
//____________________________________________________________________________//
sl@0
    98
sl@0
    99
inline void*
sl@0
   100
operator new( std::size_t s, std::nothrow_t const& ) throw()
sl@0
   101
{
sl@0
   102
    void* res = std::malloc(s ? s : 1);
sl@0
   103
sl@0
   104
    if( res )
sl@0
   105
        ::boost::itest::manager::instance().allocated( 0, 0, res, s );
sl@0
   106
sl@0
   107
    return res;
sl@0
   108
}
sl@0
   109
sl@0
   110
//____________________________________________________________________________//
sl@0
   111
sl@0
   112
inline void*
sl@0
   113
operator new[]( std::size_t s ) throw(std::bad_alloc)
sl@0
   114
{
sl@0
   115
    void* res = std::malloc(s ? s : 1);
sl@0
   116
sl@0
   117
    if( res )
sl@0
   118
        ::boost::itest::manager::instance().allocated( 0, 0, res, s );
sl@0
   119
    else
sl@0
   120
        throw std::bad_alloc();
sl@0
   121
sl@0
   122
    return res;
sl@0
   123
}
sl@0
   124
sl@0
   125
//____________________________________________________________________________//
sl@0
   126
sl@0
   127
inline void*
sl@0
   128
operator new[]( std::size_t s, std::nothrow_t const& ) throw()
sl@0
   129
{
sl@0
   130
    void* res = std::malloc(s ? s : 1);
sl@0
   131
sl@0
   132
    if( res )
sl@0
   133
        ::boost::itest::manager::instance().allocated( 0, 0, res, s );
sl@0
   134
sl@0
   135
    return res;
sl@0
   136
}
sl@0
   137
sl@0
   138
//____________________________________________________________________________//
sl@0
   139
sl@0
   140
inline void
sl@0
   141
operator delete( void* p ) throw()
sl@0
   142
{
sl@0
   143
    ::boost::itest::manager::instance().freed( p );
sl@0
   144
sl@0
   145
    std::free( p );
sl@0
   146
}
sl@0
   147
sl@0
   148
//____________________________________________________________________________//
sl@0
   149
sl@0
   150
inline void
sl@0
   151
operator delete( void* p, std::nothrow_t const& ) throw()
sl@0
   152
{
sl@0
   153
    ::boost::itest::manager::instance().freed( p );
sl@0
   154
sl@0
   155
    std::free( p );
sl@0
   156
}
sl@0
   157
sl@0
   158
//____________________________________________________________________________//
sl@0
   159
sl@0
   160
inline void
sl@0
   161
operator delete[]( void* p ) throw()
sl@0
   162
{
sl@0
   163
    ::boost::itest::manager::instance().freed( p );
sl@0
   164
sl@0
   165
    std::free( p );
sl@0
   166
}
sl@0
   167
sl@0
   168
//____________________________________________________________________________//
sl@0
   169
sl@0
   170
inline void
sl@0
   171
operator delete[]( void* p, std::nothrow_t const& ) throw()
sl@0
   172
{
sl@0
   173
    ::boost::itest::manager::instance().freed( p );
sl@0
   174
sl@0
   175
    std::free( p );
sl@0
   176
}
sl@0
   177
sl@0
   178
//____________________________________________________________________________//
sl@0
   179
sl@0
   180
#endif // BOOST_ITEST_NO_NEW_OVERLOADS
sl@0
   181
sl@0
   182
//____________________________________________________________________________//
sl@0
   183
sl@0
   184
#include <boost/test/detail/enable_warnings.hpp>
sl@0
   185
sl@0
   186
// ***************************************************************************
sl@0
   187
//  Revision History :
sl@0
   188
//  
sl@0
   189
//  $Log: exception_safety.hpp,v $
sl@0
   190
//  Revision 1.4  2006/01/28 08:52:35  rogeeff
sl@0
   191
//  operator new overloads made inline to:
sl@0
   192
//  1. prevent issues with export them from DLL
sl@0
   193
//  2. release link issue fixed
sl@0
   194
//
sl@0
   195
//  Revision 1.3  2006/01/15 11:14:38  rogeeff
sl@0
   196
//  simpl_mock -> mock_object<>::prototype()
sl@0
   197
//  operator new need to be rethinked
sl@0
   198
//
sl@0
   199
//  Revision 1.2  2005/12/20 23:50:13  rogeeff
sl@0
   200
//  unit_test.hpp removed
sl@0
   201
//
sl@0
   202
//  Revision 1.1  2005/12/14 05:03:46  rogeeff
sl@0
   203
//  exception safety automatic testing facilties
sl@0
   204
//
sl@0
   205
// ***************************************************************************
sl@0
   206
sl@0
   207
#endif // BOOST_TEST_EXCEPTION_SAFETY_HPP_111705GER