From a456775efa9ea284dd1a1d37602699bfb5bbd561 Mon Sep 17 00:00:00 2001 From: Spencer Greene Date: Mon, 16 Apr 2018 20:46:25 -0400 Subject: 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 Reviewed-By: James M Snell Reviewed-By: Ruben Bridgewater Reviewed-By: Trivikram Kamat --- BUILDING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'BUILDING.md') 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. -- cgit v1.2.3