| 8 | } |
| 9 | |
| 10 | static void assert_log_empty() { |
| 11 | assert_zu_eq(prof_log_bt_count(), 0, |
| 12 | "The log has backtraces; it isn't empty"); |
| 13 | assert_zu_eq(prof_log_thr_count(), 0, |
| 14 | "The log has threads; it isn't empty"); |
| 15 | assert_zu_eq(prof_log_alloc_count(), 0, |
| 16 | "The log has allocations; it isn't empty"); |
| 17 | } |
| 18 | |
| 19 | void *buf[N_PARAM]; |
| 20 |
no test coverage detected