os/ossrv/ossrv_pub/boost_apis/boost/test/minimal.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 2002-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: minimal.hpp,v $
sl@0
     9
//
sl@0
    10
//  Version     : $Revision: 1.19 $
sl@0
    11
//
sl@0
    12
//  Description : simple minimal testing definitions and implementation
sl@0
    13
// ***************************************************************************
sl@0
    14
sl@0
    15
#ifndef BOOST_TEST_MINIMAL_HPP_071894GER
sl@0
    16
#define BOOST_TEST_MINIMAL_HPP_071894GER
sl@0
    17
sl@0
    18
#define BOOST_CHECK(exp)       \
sl@0
    19
  ( (exp)                      \
sl@0
    20
      ? static_cast<void>(0)   \
sl@0
    21
      : boost::minimal_test::report_error(#exp,__FILE__,__LINE__, BOOST_CURRENT_FUNCTION) )
sl@0
    22
sl@0
    23
#define BOOST_REQUIRE(exp)     \
sl@0
    24
  ( (exp)                      \
sl@0
    25
      ? static_cast<void>(0)   \
sl@0
    26
      : boost::minimal_test::report_critical_error(#exp,__FILE__,__LINE__,BOOST_CURRENT_FUNCTION))
sl@0
    27
sl@0
    28
#define BOOST_ERROR( msg_ )    \
sl@0
    29
        boost::minimal_test::report_error( (msg_),__FILE__,__LINE__, BOOST_CURRENT_FUNCTION, true )
sl@0
    30
#define BOOST_FAIL( msg_ )     \
sl@0
    31
        boost::minimal_test::report_critical_error( (msg_),__FILE__,__LINE__, BOOST_CURRENT_FUNCTION, true )
sl@0
    32
sl@0
    33
//____________________________________________________________________________//
sl@0
    34
sl@0
    35
// Boost.Test
sl@0
    36
#include <boost/test/detail/global_typedef.hpp>
sl@0
    37
#include <boost/test/impl/execution_monitor.ipp>
sl@0
    38
#include <boost/test/utils/class_properties.hpp>
sl@0
    39
#include <boost/test/utils/basic_cstring/io.hpp>
sl@0
    40
sl@0
    41
// Boost
sl@0
    42
#include <boost/cstdlib.hpp>            // for exit codes#include <boost/cstdlib.hpp>            // for exit codes
sl@0
    43
#include <boost/current_function.hpp>   // for BOOST_CURRENT_FUNCTION
sl@0
    44
sl@0
    45
// STL
sl@0
    46
#include <iostream>                     // std::cerr, std::endl
sl@0
    47
#include <string>                       // std::string
sl@0
    48
sl@0
    49
#include <boost/test/detail/suppress_warnings.hpp>
sl@0
    50
sl@0
    51
//____________________________________________________________________________//
sl@0
    52
sl@0
    53
int test_main( int argc, char* argv[] );  // prototype for users test_main()
sl@0
    54
sl@0
    55
namespace boost {
sl@0
    56
namespace minimal_test {
sl@0
    57
sl@0
    58
typedef boost::unit_test::const_string const_string;
sl@0
    59
sl@0
    60
inline unit_test::counter_t& errors_counter() { static unit_test::counter_t ec = 0; return ec; }
sl@0
    61
sl@0
    62
inline void
sl@0
    63
report_error( const char* msg, const char* file, int line, const_string func_name, bool is_msg = false )
sl@0
    64
{
sl@0
    65
    ++errors_counter();
sl@0
    66
    std::cerr << file << "(" << line << "): ";
sl@0
    67
sl@0
    68
    if( is_msg )
sl@0
    69
        std::cerr << msg;
sl@0
    70
    else
sl@0
    71
        std::cerr << "test " << msg << " failed";
sl@0
    72
sl@0
    73
    if( func_name != "(unknown)" )
sl@0
    74
        std::cerr << " in function: '" << func_name << "'";
sl@0
    75
sl@0
    76
    std::cerr << std::endl;
sl@0
    77
}
sl@0
    78
sl@0
    79
inline void
sl@0
    80
report_critical_error( const char* msg, const char* file, int line, const_string func_name, bool is_msg = false )
sl@0
    81
{
sl@0
    82
    report_error( msg, file, line, func_name, is_msg );
sl@0
    83
sl@0
    84
    throw boost::execution_aborted();
sl@0
    85
}
sl@0
    86
sl@0
    87
class caller {
sl@0
    88
public:
sl@0
    89
    // constructor
sl@0
    90
    caller( int argc, char** argv )
sl@0
    91
    : m_argc( argc ), m_argv( argv ) {}
sl@0
    92
sl@0
    93
    // execution monitor hook implementation
sl@0
    94
    int operator()() { return test_main( m_argc, m_argv ); }
sl@0
    95
sl@0
    96
private:
sl@0
    97
    // Data members
sl@0
    98
    int         m_argc;
sl@0
    99
    char**      m_argv;
sl@0
   100
}; // monitor
sl@0
   101
sl@0
   102
} // namespace minimal_test
sl@0
   103
sl@0
   104
} // namespace boost
sl@0
   105
sl@0
   106
//____________________________________________________________________________//
sl@0
   107
sl@0
   108
int BOOST_TEST_CALL_DECL main( int argc, char* argv[] )
sl@0
   109
{
sl@0
   110
    using namespace boost::minimal_test;
sl@0
   111
sl@0
   112
    try {
sl@0
   113
        ::boost::execution_monitor ex_mon;
sl@0
   114
        int run_result = ex_mon.execute( caller( argc, argv ) );
sl@0
   115
sl@0
   116
        BOOST_CHECK( run_result == 0 || run_result == boost::exit_success );
sl@0
   117
    }
sl@0
   118
    catch( boost::execution_exception const& exex ) {
sl@0
   119
        if( exex.code() != boost::execution_exception::no_error )
sl@0
   120
            BOOST_ERROR( (std::string( "exception \"" ).
sl@0
   121
                            append( exex.what().begin(), exex.what().end() ).
sl@0
   122
                            append( "\" caught" ) ).c_str() );
sl@0
   123
        std::cerr << "\n**** Testing aborted.";
sl@0
   124
    }
sl@0
   125
sl@0
   126
    if( boost::minimal_test::errors_counter() != 0 ) {
sl@0
   127
        std::cerr << "\n**** " << errors_counter()
sl@0
   128
                  << " error" << (errors_counter() > 1 ? "s" : "" ) << " detected\n";
sl@0
   129
sl@0
   130
        return boost::exit_test_failure;
sl@0
   131
    }
sl@0
   132
sl@0
   133
    std::cout << "\n**** no errors detected\n";
sl@0
   134
    
sl@0
   135
    return boost::exit_success;
sl@0
   136
}
sl@0
   137
sl@0
   138
//____________________________________________________________________________//
sl@0
   139
sl@0
   140
#include <boost/test/detail/enable_warnings.hpp>
sl@0
   141
sl@0
   142
// ***************************************************************************
sl@0
   143
//  Revision History :
sl@0
   144
//  
sl@0
   145
//  $Log: minimal.hpp,v $
sl@0
   146
//  Revision 1.19  2005/02/20 08:27:06  rogeeff
sl@0
   147
//  This a major update for Boost.Test framework. See release docs for complete list of fixes/updates
sl@0
   148
//
sl@0
   149
//  Revision 1.18  2005/02/01 06:40:06  rogeeff
sl@0
   150
//  copyright update
sl@0
   151
//  old log entries removed
sl@0
   152
//  minor stilistic changes
sl@0
   153
//  depricated tools removed
sl@0
   154
//
sl@0
   155
//  Revision 1.17  2005/01/31 07:50:05  rogeeff
sl@0
   156
//  cdecl portability fix
sl@0
   157
//
sl@0
   158
//  Revision 1.16  2005/01/31 06:01:27  rogeeff
sl@0
   159
//  BOOST_TEST_CALL_DECL correctness fixes
sl@0
   160
//
sl@0
   161
//  Revision 1.15  2005/01/22 19:22:12  rogeeff
sl@0
   162
//  implementation moved into headers section to eliminate dependency of included/minimal component on src directory
sl@0
   163
//
sl@0
   164
// ***************************************************************************
sl@0
   165
sl@0
   166
sl@0
   167
#endif // BOOST_TEST_MINIMAL_HPP_071894GER