We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5022140 commit 087d11cCopy full SHA for 087d11c
rust/private/rustc.bzl
@@ -1503,7 +1503,10 @@ def rustc_compile_action(
1503
1504
experimental_use_coverage_metadata_files = toolchain._experimental_use_coverage_metadata_files
1505
1506
- runfiles = ctx.runfiles(files = getattr(ctx.files, "data", []))
+ runfiles = ctx.runfiles(
1507
+ files = getattr(ctx.files, "data", []) +
1508
+ ([] if experimental_use_coverage_metadata_files else coverage_runfiles),
1509
+ )
1510
transitive_runfiles = []
1511
crate_attr = getattr(ctx.attr, "crate", None)
1512
for runfiles_attr in (
0 commit comments