File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,10 @@ cargo bisect-rustc --test-dir=foo --start=2018-05-07 --end=2018-08-04
8989```
9090
9191By default it will run ` cargo build ` in the project and check whether or not
92- it fails. In just a few steps, we find that it stopped working on
92+ it fails. You can also use the flag ` --regress ` to specify other common
93+ regression criteria, e.g. ` --regress=ice ` for internal compiler errors.
94+
95+ In out example, in just a few steps, we can we find that it stopped working on
9396` nightly-2018-07-30 ` .
9497
9598> * Note:* Consider using the ` --preserve ` flag to keep the downloaded
@@ -222,6 +225,8 @@ previous interactive session can be hands-free automated with this script:
222225` foo/test.sh ` :
223226``` sh
224227#! /bin/sh
228+
229+ # Fail if we no longer get a `E0642` error:
225230cargo check 2>&1 | grep E0642
226231```
227232
You can’t perform that action at this time.
0 commit comments