@@ -63,13 +63,13 @@ including:
63
63
64
64
Example: ` ./x.py test src/tools/tidy `
65
65
66
- - ** Unittests ** – The Rust standard library and many of the Rust packages
66
+ - ** Unit tests ** – The Rust standard library and many of the Rust packages
67
67
include typical Rust ` #[test] ` unittests. Under the hood, ` x.py ` will run
68
68
` cargo test ` on each package to run all the tests.
69
69
70
70
Example: ` ./x.py test src/libstd `
71
71
72
- - ** Doctests ** – Example code embedded within Rust documentation is executed
72
+ - ** Doc tests ** – Example code embedded within Rust documentation is executed
73
73
via ` rustdoc --test ` . Examples:
74
74
75
75
` ./x.py test src/doc ` – Runs ` rustdoc --test ` for all documentation in
@@ -78,12 +78,12 @@ including:
78
78
` ./x.py test --doc src/libstd ` – Runs ` rustdoc --test ` on the standard
79
79
library.
80
80
81
- - ** Linkchecker ** – A small tool for verifying ` href ` links within
81
+ - ** Link checker ** – A small tool for verifying ` href ` links within
82
82
documentation.
83
83
84
84
Example: ` ./x.py test src/tools/linkchecker `
85
85
86
- - ** Distcheck ** – This verifies that the source distribution tarball created
86
+ - ** Dist check ** – This verifies that the source distribution tarball created
87
87
by the build system will unpack, build, and run all tests.
88
88
89
89
Example: ` ./x.py test distcheck `
@@ -93,7 +93,7 @@ including:
93
93
directory). This includes things such as cargo, clippy, rustfmt, rls, miri,
94
94
bootstrap (testing the Rust build system itself), etc.
95
95
96
- - ** Cargotest ** – This is a small tool which runs ` cargo test ` on a few
96
+ - ** Cargo test ** – This is a small tool which runs ` cargo test ` on a few
97
97
significant projects (such as ` servo ` , ` ripgrep ` , ` tokei ` , etc.) just to
98
98
ensure there aren't any significant regressions.
99
99
0 commit comments