Skip to content

Commit 0cd58c6

Browse files
committed
code coverage: if LLVM_PROFILE_FILE exists, pass it
1 parent 66f28cc commit 0cd58c6

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/common/util.rs

+5
Original file line numberDiff line numberDiff line change
@@ -1614,6 +1614,11 @@ impl UCommand {
16141614
}
16151615
}
16161616

1617+
// Pass LLVM_PROFILE_FILE if it is set in the environment
1618+
if let Some(llvm_profile) = env::var_os("LLVM_PROFILE_FILE") {
1619+
command.env("LLVM_PROFILE_FILE", llvm_profile);
1620+
}
1621+
16171622
command
16181623
.envs(DEFAULT_ENV)
16191624
.envs(self.env_vars.iter().cloned());

0 commit comments

Comments
 (0)