Print a persistent line that is NOT preceded by a `start`, e.g. the not-found / ungrounded branches where we don't call `check_const`.
(&mut self, line: &str)
| 2838 | }, |
| 2839 | (Err((_kind, msg)), false) => { |
| 2840 | format!("REJECTED ({elapsed:.1?}): {msg}") |
| 2841 | }, |
| 2842 | (Err((_kind, msg)), true) => { |
| 2843 | format!("FAIL ({elapsed:.1?}, depth={peak}): {msg}") |
| 2844 | }, |
| 2845 | }; |
| 2846 | |
| 2847 | if self.is_slow(slow_threshold) && self.is_expected() { |
| 2848 | format!("{suffix} [slow]") |
no test coverage detected