We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5730358 commit c9c78a3Copy full SHA for c9c78a3
1 file changed
src/executor/valgrind/measure.rs
@@ -156,6 +156,11 @@ pub async fn measure(
156
}
157
158
cmd.arg(format!("--log-file={}", log_path.to_str().unwrap()).as_str());
159
+ cmd.args(
160
+ env::var("VALGRIND_FLAGS")
161
+ .unwrap_or_default()
162
+ .split_whitespace(),
163
+ );
164
165
// Set the command to execute:
166
let script_path = create_run_script()?;
0 commit comments