summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authorOli Scherer <git-spam-no-reply9815368754983@oli-obk.de>2023-07-26 08:22:52 +0000
committerOli Scherer <git-spam-no-reply9815368754983@oli-obk.de>2023-07-26 08:22:52 +0000
commit841f8dc19f3e0be4377efdf0fdd35191670308e5 (patch)
tree3c6805dd1d8848b4aa28b84f12a0b9c60daa5b51 /src/bootstrap
parent2b444672e10d1a019c194729b9e4800d39904459 (diff)
downloadrust-841f8dc19f3e0be4377efdf0fdd35191670308e5.tar.gz
rust-841f8dc19f3e0be4377efdf0fdd35191670308e5.zip
Make `x test src/tools/rustfmt --bless` format rustfmt with the freshly built in-tree version
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/test.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/bootstrap/test.rs b/src/bootstrap/test.rs
index c69b21488d2..1fe92098fd6 100644
--- a/src/bootstrap/test.rs
+++ b/src/bootstrap/test.rs
@@ -430,6 +430,10 @@ impl Step for Rustfmt {
             &[],
         );
 
+        if builder.config.cmd.bless() {
+            cargo.env("BLESS", "1");
+        }
+
         let dir = testdir(builder, compiler.host);
         t!(fs::create_dir_all(&dir));
         cargo.env("RUSTFMT_TEST_DIR", dir);