| 192 | } |
| 193 | |
| 194 | int main() { |
| 195 | const test_no_pending_on_finish guard{}; |
| 196 | |
| 197 | BOOST_TEST(boost::stacktrace::this_thread::get_capture_stacktraces_at_throw()); |
| 198 | |
| 199 | test_no_exception(); |
| 200 | test_trace_from_exception(); |
| 201 | test_after_other_exception(); |
| 202 | test_rethrow(); |
| 203 | test_rethrow_after_other_exception(); |
| 204 | test_nested(); |
| 205 | test_rethrow_nested(); |
| 206 | test_from_other_thread(); |
| 207 | |
| 208 | return boost::report_errors(); |
| 209 | } |
nothing calls this directly
no test coverage detected