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 f5d3a2d commit f552a6cCopy full SHA for f552a6c
1 file changed
tests/uutests/src/lib/util.rs
@@ -1762,6 +1762,11 @@ impl UCommand {
1762
}
1763
1764
1765
+ // Forward the LLVM_PROFILE_FILE variable to the call, for coverage purposes.
1766
+ if let Some(ld_preload) = env::var_os("LLVM_PROFILE_FILE") {
1767
+ command.env("LLVM_PROFILE_FILE", ld_preload);
1768
+ }
1769
+
1770
command
1771
.envs(DEFAULT_ENV)
1772
.envs(self.env_vars.iter().cloned());
0 commit comments