We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e55caf commit c50ed9dCopy full SHA for c50ed9d
1 file changed
src/executor/valgrind/measure.rs
@@ -141,6 +141,11 @@ pub async fn measure(
141
}
142
143
cmd.arg(format!("--log-file={}", log_path.to_str().unwrap()).as_str());
144
+ cmd.args(
145
+ std::env::var("VALGRIND_FLAGS")
146
+ .unwrap_or_default()
147
+ .split_whitespace(),
148
+ );
149
150
// Set the command to execute:
151
let script_path = create_run_script()?;
0 commit comments