2018-09-27 08:26:29 +03:00
|
|
|
// Copyright 2018 Peter Dimov
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
|
|
|
|
#include <boost/throw_exception.hpp>
|
|
|
|
#include <boost/exception/get_error_info.hpp>
|
|
|
|
#include <boost/detail/lightweight_test.hpp>
|
|
|
|
|
|
|
|
class my_exception: public std::exception
|
|
|
|
{
|
|
|
|
};
|
|
|
|
|
|
|
|
class my_exception2: public std::exception, public boost::exception
|
|
|
|
{
|
|
|
|
};
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
BOOST_THROW_EXCEPTION( my_exception() );
|
|
|
|
}
|
|
|
|
catch( boost::exception const & x )
|
|
|
|
{
|
2019-11-25 19:17:47 +02:00
|
|
|
{
|
|
|
|
char const * const * file = boost::get_error_info<boost::throw_file>( x );
|
2018-09-27 08:26:29 +03:00
|
|
|
|
2019-11-25 19:17:47 +02:00
|
|
|
BOOST_TEST( file != 0 );
|
|
|
|
BOOST_TEST_CSTR_EQ( *file, __FILE__ );
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
int const * line = boost::get_error_info<boost::throw_line>( x );
|
|
|
|
|
|
|
|
BOOST_TEST( line != 0 );
|
|
|
|
BOOST_TEST_EQ( *line, 24 );
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
char const * const * function = boost::get_error_info<boost::throw_function>( x );
|
|
|
|
|
|
|
|
BOOST_TEST( function != 0 );
|
|
|
|
BOOST_TEST_CSTR_EQ( *function, BOOST_CURRENT_FUNCTION );
|
|
|
|
}
|
2018-09-27 08:26:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
BOOST_THROW_EXCEPTION( my_exception2() );
|
|
|
|
}
|
|
|
|
catch( boost::exception const & x )
|
|
|
|
{
|
2019-11-25 19:17:47 +02:00
|
|
|
{
|
|
|
|
char const * const * file = boost::get_error_info<boost::throw_file>( x );
|
|
|
|
|
|
|
|
BOOST_TEST( file != 0 );
|
|
|
|
BOOST_TEST_CSTR_EQ( *file, __FILE__ );
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
int const * line = boost::get_error_info<boost::throw_line>( x );
|
|
|
|
|
|
|
|
BOOST_TEST( line != 0 );
|
|
|
|
BOOST_TEST_EQ( *line, 52 );
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
char const * const * function = boost::get_error_info<boost::throw_function>( x );
|
2018-09-27 08:26:29 +03:00
|
|
|
|
2019-11-25 19:17:47 +02:00
|
|
|
BOOST_TEST( function != 0 );
|
|
|
|
BOOST_TEST_CSTR_EQ( *function, BOOST_CURRENT_FUNCTION );
|
|
|
|
}
|
2018-09-27 08:26:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return boost::report_errors();
|
|
|
|
}
|