about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorMark Mansi <markm@cs.wisc.edu>2020-02-20 10:23:14 -0600
committerWho? Me?! <mark-i-m@users.noreply.github.com>2020-02-20 10:28:24 -0600
commitd7dd369ae036abe2b5caa471afe9108f34f2674c (patch)
tree204b0b4f7ec35f4bc0236b0605627f3107d2f0e8 /src/doc/rustc-dev-guide
parent76be6d1f2f34d195719d374a0062366cfe5755b1 (diff)
downloadrust-d7dd369ae036abe2b5caa471afe9108f34f2674c.tar.gz
rust-d7dd369ae036abe2b5caa471afe9108f34f2674c.zip
mention tidy bless
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/tests/intro.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/doc/rustc-dev-guide/src/tests/intro.md b/src/doc/rustc-dev-guide/src/tests/intro.md
index e5b7fcacc3b..6691f2d4e24 100644
--- a/src/doc/rustc-dev-guide/src/tests/intro.md
+++ b/src/doc/rustc-dev-guide/src/tests/intro.md
@@ -73,6 +73,9 @@ including:
 
   Example: `./x.py fmt` runs rustfmt on the codebase.
 
+  Example: `./x.py test src/tools/tidy --bless` does formatting before doing
+  other tidy checks.
+
 - **Unit tests** – The Rust standard library and many of the Rust packages
   include typical Rust `#[test]` unittests.  Under the hood, `x.py` will run
   `cargo test` on each package to run all the tests.