77 lines
2.0 KiB
C++
77 lines
2.0 KiB
C++
//////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// (C) Copyright Ion Gaztanaga 2012-2013. 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/container for documentation.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
#define BOOST_CONTAINER_USER_DEFINED_THROW_CALLBACKS
|
|
|
|
#include <boost/container/throw_exception.hpp>
|
|
#include <boost/core/lightweight_test.hpp>
|
|
|
|
using namespace boost::container;
|
|
|
|
static bool bad_alloc_called = false;
|
|
static bool out_of_range_called = false;
|
|
static bool length_error_called = false;
|
|
static bool logic_error_called = false;
|
|
static bool runtime_error_called = false;
|
|
|
|
BOOST_NORETURN static void validate_and_never_return()
|
|
{
|
|
BOOST_TEST(bad_alloc_called == true);
|
|
BOOST_TEST(out_of_range_called == true);
|
|
BOOST_TEST(length_error_called == true);
|
|
BOOST_TEST(logic_error_called == true);
|
|
BOOST_TEST(runtime_error_called == true);
|
|
std::exit(::boost::report_errors());
|
|
}
|
|
|
|
//User defined throw implementations
|
|
namespace boost {
|
|
namespace container {
|
|
|
|
BOOST_NORETURN void throw_bad_alloc()
|
|
{
|
|
bad_alloc_called = true;
|
|
throw_out_of_range("dummy");
|
|
}
|
|
|
|
BOOST_NORETURN void throw_out_of_range(const char* str)
|
|
{
|
|
out_of_range_called = true;
|
|
throw_length_error(str);
|
|
}
|
|
|
|
BOOST_NORETURN void throw_length_error(const char* str)
|
|
{
|
|
length_error_called = true;
|
|
throw_logic_error(str);
|
|
}
|
|
|
|
BOOST_NORETURN void throw_logic_error(const char* str)
|
|
{
|
|
logic_error_called = true;
|
|
throw_runtime_error(str);
|
|
}
|
|
|
|
BOOST_NORETURN void throw_runtime_error(const char* str)
|
|
{
|
|
(void)str;
|
|
runtime_error_called = true;
|
|
validate_and_never_return();
|
|
}
|
|
|
|
}} //boost::container
|
|
|
|
int main()
|
|
{
|
|
//Check user-defined throw callbacks are called
|
|
throw_bad_alloc();
|
|
//Never reached
|
|
return 33;
|
|
}
|