File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 55For the purposes of this guide, * fuzzing* is any testing methodology that
66involves compiling a wide variety of programs in an attempt to uncover bugs in rustc.
77Fuzzing is often used to find internal compiler errors (ICEs).
8- Fuzzing can be beneficial, because it can find bugs before users run into them and
9- provide small, self-contained programs that make the bug easier to track down.
8+ Fuzzing can be beneficial, because it can find bugs before users run into them.
9+ It also provides small, self-contained programs that make the bug easier to track down.
1010However, some common mistakes can reduce the helpfulness of fuzzing and end up
1111making contributors' lives harder.
1212To maximize your positive impact on the Rust
@@ -144,7 +144,7 @@ To enable debug assertions, add this to `bootstrap.toml` when compiling rustc:
144144debug-assertions = true
145145```
146146
147- ICEs that require debug assertions to reproduce should be tagged
147+ ICEs that require debug assertions to reproduce should be tagged
148148[ ` requires-debug-assertions ` ] [ requires-debug-assertions ] .
149149
150150[ requires-debug-assertions ] : https://github.com/rust-lang/rust/labels/requires-debug-assertions
You can’t perform that action at this time.
0 commit comments