(&self, worker_idx: usize, prefix: &str)
| 2566 | // constant's record would never be flushed by a trailing reset — |
| 2567 | // flush it explicitly. |
| 2568 | tc.finish_constant_accounting(); |
| 2569 | r |
| 2570 | }; |
| 2571 | if res.is_ok() { |
| 2572 | passed.fetch_add(1, Ordering::Relaxed); |
| 2573 | } else { |
| 2574 | failed.fetch_add(1, Ordering::Relaxed); |
| 2575 | } |
| 2576 | checks_since_clear += 1; |
| 2577 | } |
| 2578 | if let Some(sink) = kenv.profile_sink.take() { |
| 2579 | sinks.lock().unwrap().push(sink); |
no test coverage detected