make sure './miri many-seeds ./miri run' does not re-invoke the auto-ops
This commit is contained in:
parent
a5ba57e415
commit
6117fa1fef
1 changed files with 2 additions and 1 deletions
|
|
@ -94,8 +94,8 @@ impl Command {
|
|||
| Command::Cargo { .. } => Self::auto_actions()?,
|
||||
| Command::ManySeeds { .. }
|
||||
| Command::Toolchain { .. }
|
||||
| Command::RustcPull { .. }
|
||||
| Command::Bench { .. }
|
||||
| Command::RustcPull { .. }
|
||||
| Command::RustcPush { .. } => {}
|
||||
}
|
||||
// Then run the actual command.
|
||||
|
|
@ -295,6 +295,7 @@ impl Command {
|
|||
bail!("expected many-seeds command to be non-empty");
|
||||
};
|
||||
let sh = Shell::new()?;
|
||||
sh.set_var("MIRI_AUTO_OPS", "no"); // just in case we get recursively invoked
|
||||
for seed in seed_start..seed_end {
|
||||
println!("Trying seed: {seed}");
|
||||
let mut miriflags = env::var_os("MIRIFLAGS").unwrap_or_default();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue