coverage: Copy all remaining run-coverage tests into coverage-map

These multi-file tests were not copied over in #114843 because they weren't
working, but it turns out that they just need the correct crate-type.
This commit is contained in:
Zalathar 2023-10-28 21:29:37 +11:00
parent 4b76b97bc8
commit 211d4cee8e
13 changed files with 392 additions and 1 deletions

View file

@ -2193,7 +2193,7 @@ impl<'test> TestCx<'test> {
|| self.is_vxworks_pure_static()
|| self.config.target.contains("bpf")
|| !self.config.target_cfg().dynamic_linking
|| self.config.mode == RunCoverage
|| matches!(self.config.mode, CoverageMap | RunCoverage)
{
// We primarily compile all auxiliary libraries as dynamic libraries
// to avoid code size bloat and large binaries as much as possible