Conversation
|
It seems that nextest won't forward |
This reverts commit ca92bff.
|
I have a question regarding the build of the test insfrastructure. Are the coreutils binaries directly embedded in the test executable, or are they called separately ? My guess is the second, but I may be wrong. Ideally, we'd only instrument the build of the coreutils, so calling the test executable does not produce a trace by itself. Additionally, I realized that nextest actually seems to forward #[macro_export]
macro_rules! new_ucmd {
() => {
let mut cmd = TestScenario::new(util_name!()).ucmd();
if let Some(val) = std::env::var("LLVM_PROFILE_FILE") {
cmd.env("LLVM_PROFILE_FILE", val);
};
cmd
};
}EDITMaybe it's a better idea to add it here directly. |
No description provided.