82957de970
The uncaught_exceptions function is functionally equivalent to unhandled_exceptions_count in Boost.Log and implements functionality similar to the same named C++17 standard function. Tests and docs are also included. One notable difference from std::uncaught_exceptions is that the return type is unsigned rather than signed. This is deliberate as uncaught_exceptions must never return a negative value and unsigned int better documents that. Theoretically, as a counter, it may also overflow.
56 lines
1.3 KiB
C++
56 lines
1.3 KiB
C++
/*
|
|
* Copyright Andrey Semashev 2018.
|
|
* Distributed under the Boost Software License, Version 1.0.
|
|
* (See accompanying file LICENSE_1_0.txt or copy at
|
|
* https://www.boost.org/LICENSE_1_0.txt)
|
|
*/
|
|
/*!
|
|
* \file uncaught_exceptions.cpp
|
|
* \author Andrey Semashev
|
|
* \date 2018-11-10
|
|
*
|
|
* \brief This file contains tests for the uncaught_exceptions function.
|
|
*
|
|
* This file only contains the very basic checks of functionality that can be portably achieved
|
|
* through C++03 std::uncaught_exception.
|
|
*/
|
|
|
|
#include <boost/core/uncaught_exceptions.hpp>
|
|
#include <boost/core/lightweight_test.hpp>
|
|
|
|
struct my_exception {};
|
|
|
|
class exception_watcher
|
|
{
|
|
unsigned int& m_count;
|
|
|
|
public:
|
|
explicit exception_watcher(unsigned int& count) : m_count(count) {}
|
|
~exception_watcher() { m_count = boost::core::uncaught_exceptions(); }
|
|
};
|
|
|
|
// Tests for uncaught_exceptions when used in a destructor while an exception propagates
|
|
void test_in_destructor()
|
|
{
|
|
const unsigned int root_count = boost::core::uncaught_exceptions();
|
|
|
|
unsigned int level1_count = root_count;
|
|
try
|
|
{
|
|
exception_watcher watcher(level1_count);
|
|
throw my_exception();
|
|
}
|
|
catch (...)
|
|
{
|
|
}
|
|
|
|
BOOST_TEST_NE(root_count, level1_count);
|
|
}
|
|
|
|
int main()
|
|
{
|
|
test_in_destructor();
|
|
|
|
return boost::report_errors();
|
|
}
|