| 56 | } |
| 57 | |
| 58 | static void benchmarkStackTrace() |
| 59 | { |
| 60 | if (!Execution::stackTracingAvailable()) |
| 61 | return; |
| 62 | QBENCHMARK |
| 63 | { |
| 64 | const auto trace = Execution::stackTrace(255); |
| 65 | QVERIFY(trace.size() > 0); |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | static void benchmarkResolveStackTrace() |
| 70 | { |
nothing calls this directly
no test coverage detected