X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=src%2Fbootstrap%2Ftoolstate.rs;h=1969e0b6f87223021e89915e8fe9d6718d251524;hb=939a3ddf943f962807b84a44e8b31d99c0db0a94;hp=1a17744322753f7a431b10b427568c4cf28653b8;hpb=0b3e75e1cdc8d56fc5540e17450d96228b26e268;p=rust.git diff --git a/src/bootstrap/toolstate.rs b/src/bootstrap/toolstate.rs index 1a177443227..1969e0b6f87 100644 --- a/src/bootstrap/toolstate.rs +++ b/src/bootstrap/toolstate.rs @@ -158,7 +158,7 @@ impl Step for ToolStateCheck { /// stable tool. That is, the status is not allowed to get worse /// (test-pass to test-fail or build-fail). fn run(self, builder: &Builder<'_>) { - if builder.config.dry_run { + if builder.config.dry_run() { return; } @@ -265,7 +265,7 @@ pub fn save_toolstate(&self, tool: &str, state: ToolState) { // If we're in a dry run setting we don't want to save toolstates as // that means if we e.g. panic down the line it'll look like we tested // everything (but we actually haven't). - if self.config.dry_run { + if self.config.dry_run() { return; } // Toolstate isn't tracked for clippy or rustfmt, but since most tools do, we avoid checking