We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5ba57e commit 6117fa1Copy full SHA for 6117fa1
src/tools/miri/miri-script/src/commands.rs
@@ -94,8 +94,8 @@ impl Command {
94
| Command::Cargo { .. } => Self::auto_actions()?,
95
| Command::ManySeeds { .. }
96
| Command::Toolchain { .. }
97
- | Command::RustcPull { .. }
98
| Command::Bench { .. }
+ | Command::RustcPull { .. }
99
| Command::RustcPush { .. } => {}
100
}
101
// Then run the actual command.
@@ -295,6 +295,7 @@ impl Command {
295
bail!("expected many-seeds command to be non-empty");
296
};
297
let sh = Shell::new()?;
298
+ sh.set_var("MIRI_AUTO_OPS", "no"); // just in case we get recursively invoked
299
for seed in seed_start..seed_end {
300
println!("Trying seed: {seed}");
301
let mut miriflags = env::var_os("MIRIFLAGS").unwrap_or_default();
0 commit comments