Skip to content

Commit 0b7e626

Browse files
spwgjasnell
authored andcommitted
doc: fix inconsistency in documentation for building
Specifically, fix the inconsistency where the documentation suggests running "$ make test" instead of "$ make -j4 test". The "-j4" flag uses multiple processes, making the command faster. Fixes: #19919 PR-URL: #20091 Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
1 parent 1aa74cc commit 0b7e626

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

BUILDING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,10 +179,10 @@ If you are running tests prior to submitting a Pull Request, the recommended
179179
command is:
180180

181181
```console
182-
$ make test
182+
$ make -j4 test
183183
```
184184

185-
`make test` does a full check on the codebase, including running linters and
185+
`make -j4 test` does a full check on the codebase, including running linters and
186186
documentation tests.
187187

188188
Optionally, continue below.

0 commit comments

Comments
 (0)