Add a note on bisecting

This commit is contained in:
Who? Me?! 2018-10-22 12:48:58 -05:00
parent 8a533773d4
commit 9a741d13b9
1 changed files with 4 additions and 0 deletions

View File

@ -384,3 +384,7 @@ create a minimal working example with Godbolt. Go to
[env-logger]: https://docs.rs/env_logger/0.4.3/env_logger/
## Narrowing (Bisecting) Regressions
The [cargo-bisect-rustc](https://github.com/rust-lang-nursery/cargo-bisect-rustc) tool can be used as a quick and easy way to find exactly which PR caused a change in `rustc` behavior. It automatically downloads `rustc` PR artifacts and tests them against a project you provide until it finds the regression. You can then look at the PR to get more context on *why* it was changed. See [this tutorial](https://github.com/rust-lang-nursery/cargo-bisect-rustc/blob/master/TUTORIAL.md) on how to use it.