Auto merge of #2901 - oli-obk:noisy, r=RalfJung

Hide full miri command line in `./miri run-dep`

fixes #2443
This commit is contained in:
bors 2023-05-23 10:03:01 +00:00
commit 053edf46bb

View file

@ -277,7 +277,6 @@ fn run_dep_mode(target: String, mut args: impl Iterator<Item = OsString>) -> Res
// the arguments to the interpreted prog
cmd.arg("--");
cmd.args(args);
println!("{cmd:?}");
if cmd.spawn()?.wait()?.success() { Ok(()) } else { std::process::exit(1) }
}