about summary refs log tree commit diff
path: root/tests/coverage/async.cov-map
AgeCommit message (Collapse)AuthorLines
2023-12-15coverage: Use `Waker::noop` in async testsZalathar-102/+50
2023-12-03coverage: Skip spans that can't be un-expanded back to the function bodyZalathar-6/+6
When we extract coverage spans from MIR, we try to "un-expand" them back to spans that are inside the function's body span. In cases where that doesn't succeed, the current code just swaps in the entire body span instead. But that tends to result in coverage spans that are completely unrelated to the control flow of the affected code, so it's better to just discard those spans.
2023-11-25coverage: Simplify building coverage expressions based on sumsZalathar-14/+14
In some cases we need to prepare a coverage expression that is the sum of an arbitrary number of other terms. This patch simplifies the code paths that build those sums. This causes some churn in the mappings, because the previous code was building its sums in a somewhat idiosyncratic order.
2023-11-07coverage: Migrate `tests/coverage-map` into `tests/coverage`Zalathar-0/+326