We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 295f894 commit ceda774Copy full SHA for ceda774
src/bootstrap/test.rs
@@ -363,7 +363,6 @@ pub struct Miri {
363
impl Step for Miri {
364
type Output = ();
365
const ONLY_HOSTS: bool = true;
366
- const DEFAULT: bool = true;
367
368
fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
369
run.path("src/tools/miri")
@@ -430,6 +429,7 @@ impl Step for Miri {
430
429
let miri_sysroot = if builder.config.dry_run {
431
String::new()
432
} else {
+ builder.verbose(&format!("running: {:?}", cargo));
433
let out = cargo.output()
434
.expect("We already ran `cargo miri setup` before and that worked");
435
assert!(out.status.success(), "`cargo miri setup` returned with non-0 exit code");
0 commit comments