File tree 1 file changed +7
-4
lines changed
1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -61,21 +61,24 @@ filtering for tests that include "issue-1234" in the name.
61
61
62
62
## Using incremental compilation
63
63
64
- You can further enable the ` --incremental ` flag to save additional time in subsequent rebuilds:
64
+ You can further enable the ` --incremental ` flag to save additional
65
+ time in subsequent rebuilds:
65
66
66
67
``` bash
67
68
> ./x.py test --stage 1 src/test/ui --incremental --test-args issue-1234
68
69
```
69
70
70
- If you don't want to include the flag with every command, you can enable it in the ` config.toml ` , too:
71
+ If you don't want to include the flag with every command, you can
72
+ enable it in the ` config.toml ` , too:
71
73
72
74
``` toml
73
75
# Whether to always use incremental compilation when building rustc
74
76
incremental = true
75
77
```
76
78
77
- Note that incremental compilation will use more disk space than usual. If disk space is a
78
- concern for you, you might want to check the size of the ` build ` directory from time to time.
79
+ Note that incremental compilation will use more disk space than
80
+ usual. If disk space is a concern for you, you might want to check the
81
+ size of the ` build ` directory from time to time.
79
82
80
83
## Running tests manually
81
84
You can’t perform that action at this time.
0 commit comments