about summary refs log tree commit diff
diff options
context:
space:
mode:
authorOli Scherer <git-spam-no-reply9815368754983@oli-obk.de>2023-08-11 15:22:06 +0000
committerOli Scherer <git-spam-no-reply9815368754983@oli-obk.de>2023-08-11 15:22:06 +0000
commita7af8bc6ec032f54e3dbcd2a91469c34a6fef678 (patch)
tree4c2219dcbb832ed66ed00f695c3a723b1d17c8fa
parent1e8fdf492808a25d78a97e1242b835ace9924e4d (diff)
downloadrust-a7af8bc6ec032f54e3dbcd2a91469c34a6fef678.tar.gz
rust-a7af8bc6ec032f54e3dbcd2a91469c34a6fef678.zip
Fix SPEEDTEST instructions
-rw-r--r--book/src/development/speedtest.md8
1 files changed, 2 insertions, 6 deletions
diff --git a/book/src/development/speedtest.md b/book/src/development/speedtest.md
index 0db718e6ad6..4ea1c8e5c9c 100644
--- a/book/src/development/speedtest.md
+++ b/book/src/development/speedtest.md
@@ -9,16 +9,12 @@ accessed by the `SPEEDTEST` (and `SPEEDTEST_*`) environment variables.
 To do a simple speed test of a lint (e.g. `allow_attributes`), use this command.
 
 ```sh
-$ SPEEDTEST=ui TESTNAME="allow_attributes" cargo uitest -- --nocapture
+$ SPEEDTEST=ui TESTNAME="allow_attributes" cargo uitest
 ```
 
 This will test all `ui` tests (`SPEEDTEST=ui`) whose names start with `allow_attributes`. By default, `SPEEDTEST` will
 iterate your test 1000 times. But you can change this with `SPEEDTEST_ITERATIONS`.
 
 ```sh
-$ SPEEDTEST=toml SPEEDTEST_ITERATIONS=100 TESTNAME="semicolon_block" cargo uitest -- --nocapture
+$ SPEEDTEST=toml SPEEDTEST_ITERATIONS=100 TESTNAME="semicolon_block" cargo uitest
 ```
-
-> **WARNING**: Be sure to use `-- --nocapture` at the end of the command to see the average test time. If you don't
-> use `-- --nocapture` (e.g. `SPEEDTEST=ui` `TESTNAME="let_underscore_untyped" cargo uitest -- --nocapture`), this
-> will not show up.