| 309 | } |
| 310 | |
| 311 | int main(const int, const char* argv[]) { |
| 312 | test_deeply_nested_namespaces(); |
| 313 | test_frames_string_data_validity(); |
| 314 | test_nested<15>(); |
| 315 | test_comparisons(); |
| 316 | test_iterators(); |
| 317 | test_frame(); |
| 318 | test_empty_basic_stacktrace<true>(); |
| 319 | test_empty_basic_stacktrace<false>(); |
| 320 | |
| 321 | BOOST_TEST(&make_some_stacktrace1 != &make_some_stacktrace2); |
| 322 | boost::stacktrace::stacktrace b1 = make_some_stacktrace1(); |
| 323 | BOOST_TEST(b1.size() == 4); |
| 324 | boost::stacktrace::stacktrace b2 = make_some_stacktrace2(); |
| 325 | BOOST_TEST(b2.size() == 4); |
| 326 | test_comparisons_base(make_some_stacktrace1(), make_some_stacktrace2()); |
| 327 | |
| 328 | test_nested<260>(false); |
| 329 | |
| 330 | test_stacktrace_limits(); |
| 331 | test_relative_virtual_address(argv[0]); |
| 332 | |
| 333 | return boost::report_errors(); |
| 334 | } |
nothing calls this directly
no test coverage detected