]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/boost/test/impl/unit_test_monitor.ipp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / boost / test / impl / unit_test_monitor.ipp
CommitLineData
7c673cae
FG
1// (C) Copyright Gennadiy Rozental 2001.
2// Distributed under the Boost Software License, Version 1.0.
3// (See accompanying file LICENSE_1_0.txt or copy at
4// http://www.boost.org/LICENSE_1_0.txt)
5
6// See http://www.boost.org/libs/test for the library home page.
7//
8// File : $RCSfile$
9//
10// Version : $Revision$
11//
12// Description : implements specific subclass of Executon Monitor used by Unit
13// Test Framework to monitor test cases run.
14// ***************************************************************************
15
16#ifndef BOOST_TEST_UNIT_TEST_MONITOR_IPP_012205GER
17#define BOOST_TEST_UNIT_TEST_MONITOR_IPP_012205GER
18
19// Boost.Test
20#include <boost/test/unit_test_monitor.hpp>
21#include <boost/test/framework.hpp>
22#include <boost/test/tree/test_unit.hpp>
23#include <boost/test/unit_test_parameters.hpp>
24
25#include <boost/test/detail/suppress_warnings.hpp>
26
27//____________________________________________________________________________//
28
29namespace boost {
30namespace unit_test {
31
92f5a8d4
TL
32// singleton pattern
33BOOST_TEST_SINGLETON_CONS_IMPL(unit_test_monitor_t)
34
7c673cae
FG
35// ************************************************************************** //
36// ************** unit_test_monitor ************** //
37// ************************************************************************** //
38
39unit_test_monitor_t::error_level
92f5a8d4 40unit_test_monitor_t::execute_and_translate( boost::function<void ()> const& func, unsigned long int timeout_microseconds )
7c673cae
FG
41{
42 BOOST_TEST_I_TRY {
b32b8144 43 p_catch_system_errors.value = runtime_config::get<bool>( runtime_config::btrt_catch_sys_errors );
92f5a8d4 44 p_timeout.value = timeout_microseconds;
b32b8144
FG
45 p_auto_start_dbg.value = runtime_config::get<bool>( runtime_config::btrt_auto_start_dbg );
46 p_use_alt_stack.value = runtime_config::get<bool>( runtime_config::btrt_use_alt_stack );
47 p_detect_fp_exceptions.value = runtime_config::get<bool>( runtime_config::btrt_detect_fp_except );
7c673cae
FG
48
49 vexecute( func );
50 }
51 BOOST_TEST_I_CATCH( execution_exception, ex ) {
52 framework::exception_caught( ex );
b32b8144 53 framework::test_unit_aborted( framework::current_test_unit() );
7c673cae
FG
54
55 // translate execution_exception::error_code to error_level
56 switch( ex.code() ) {
57 case execution_exception::no_error: return test_ok;
58 case execution_exception::user_error: return unexpected_exception;
59 case execution_exception::cpp_exception_error: return unexpected_exception;
60 case execution_exception::system_error: return os_exception;
61 case execution_exception::timeout_error: return os_timeout;
62 case execution_exception::user_fatal_error:
63 case execution_exception::system_fatal_error: return fatal_error;
64 default: return unexpected_exception;
65 }
66 }
67
68 return test_ok;
69}
70
71//____________________________________________________________________________//
72
73} // namespace unit_test
74} // namespace boost
75
76#include <boost/test/detail/enable_warnings.hpp>
77
78#endif // BOOST_TEST_UNIT_TEST_MONITOR_IPP_012205GER