File tree 1 file changed +6
-1
lines changed
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
89
89
```
90
90
91
91
By 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
93
96
` nightly-2018-07-30 ` .
94
97
95
98
> * 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:
222
225
` foo/test.sh ` :
223
226
``` sh
224
227
#! /bin/sh
228
+
229
+ # Fail if we no longer get a `E0642` error:
225
230
cargo check 2>&1 | grep E0642
226
231
```
227
232
You can’t perform that action at this time.
0 commit comments