| 22 | } |
| 23 | |
| 24 | void SomeMethod() { |
| 25 | TStringStream out; |
| 26 | |
| 27 | FormatBackTrace(&out); |
| 28 | |
| 29 | #if defined(_musl_) |
| 30 | // musl dladdr broken for us now |
| 31 | return; |
| 32 | #endif |
| 33 | |
| 34 | UNIT_ASSERT(out.Empty() || out.Str().find("SomeMethod") != TString::npos); |
| 35 | } |
| 36 | |
| 37 | class TBackTraceTest: public TTestBase { |
| 38 | UNIT_TEST_SUITE(TBackTraceTest); |