summaryrefslogtreecommitdiff
path: root/BUILDING.md
diff options
context:
space:
mode:
authorSpencer Greene <spencerwgreene@gmail.com>2018-04-16 20:46:25 -0400
committerTrivikram Kamat <16024985+trivikr@users.noreply.github.com>2018-04-19 22:45:22 -0700
commita456775efa9ea284dd1a1d37602699bfb5bbd561 (patch)
treedd1a92e99f244c6ac615e0d9b6a87544f3cde9ca /BUILDING.md
parente32eddc550eb1aad8fe291a2808c22d1d6142aa5 (diff)
downloadandroid-node-v8-a456775efa9ea284dd1a1d37602699bfb5bbd561.tar.gz
android-node-v8-a456775efa9ea284dd1a1d37602699bfb5bbd561.tar.bz2
android-node-v8-a456775efa9ea284dd1a1d37602699bfb5bbd561.zip
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: https://github.com/nodejs/node/issues/19919 PR-URL: https://github.com/nodejs/node/pull/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>
Diffstat (limited to 'BUILDING.md')
-rw-r--r--BUILDING.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/BUILDING.md b/BUILDING.md
index c57905b75a..618427eaef 100644
--- a/BUILDING.md
+++ b/BUILDING.md
@@ -179,10 +179,10 @@ If you are running tests prior to submitting a Pull Request, the recommended
command is:
```console
-$ make test
+$ make -j4 test
```
-`make test` does a full check on the codebase, including running linters and
+`make -j4 test` does a full check on the codebase, including running linters and
documentation tests.
Optionally, continue below.