-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
59 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Speedtest | ||
`SPEEDTEST` is the tool we use to measure lint's performance, it works by executing the same test several times. | ||
|
||
It's useful for measuring changes to current lints and deciding if the performance changes too much. `SPEEDTEST` is | ||
accessed by the `SPEEDTEST` (and `SPEEDTEST_*`) environment variables. | ||
|
||
## Checking Speedtest | ||
|
||
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 | ||
``` | ||
|
||
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 | ||
``` | ||
|
||
> **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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters