| 129 | #endif // #ifndef BOOST_LEAF_NO_EXCEPTIONS |
| 130 | |
| 131 | void test_single_thread() |
| 132 | { |
| 133 | BOOST_TEST_EQ(test_result(hidden_result2, true), 0); |
| 134 | BOOST_TEST_EQ(test_result(hidden_result1, true), 0); |
| 135 | |
| 136 | #ifndef BOOST_LEAF_NO_EXCEPTIONS |
| 137 | BOOST_TEST_EQ(test_exception(hidden_throw1, true), 0); |
| 138 | BOOST_TEST_EQ(test_catch(hidden_throw1), 0); |
| 139 | BOOST_TEST_EQ(test_exception(hidden_throw2, true), 0); |
| 140 | BOOST_TEST_EQ(test_catch(hidden_throw2), 0); |
| 141 | #endif // #ifndef BOOST_LEAF_NO_EXCEPTIONS |
| 142 | } |
| 143 | |
| 144 | void test_multithreaded() |
| 145 | { |
no test coverage detected