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 7cb0908 commit 61ba83aCopy full SHA for 61ba83a
1 file changed
tests/common/util.rs
@@ -1657,6 +1657,11 @@ impl UCommand {
1657
}
1658
1659
1660
+ // Forward the LLVM_PROFILE_FILE variable to the call, for coverage purposes.
1661
+ if let Some(ld_preload) = env::var_os("LLVM_PROFILE_FILE") {
1662
+ command.env("LLVM_PROFILE_FILE", ld_preload);
1663
+ }
1664
+
1665
command
1666
.envs(DEFAULT_ENV)
1667
.envs(self.env_vars.iter().cloned());
0 commit comments