@@ -266,26 +266,26 @@ jstest: build-addons build-addons-napi ## Runs addon tests and JS tests
266
266
.PHONY : test
267
267
# This does not run tests of third-party libraries inside deps.
268
268
test : all # # Runs default tests, linters, and builds docs.
269
- # Build the addons before running the tests so the test results
270
- # can be displayed together
269
+ @echo " Build the addons before running the tests so the test results"
270
+ @echo " can be displayed together"
271
271
$(MAKE ) -s build-addons
272
272
$(MAKE ) -s build-addons-napi
273
273
$(MAKE ) -s cctest
274
274
$(MAKE ) -s jstest
275
275
276
276
.PHONY : test-only
277
277
test-only : all # # For a quick test, does not run linter or build docs.
278
- # Build the addons before running the tests so the test results
279
- # can be displayed together
278
+ @echo " Build the addons before running the tests so the test results"
279
+ @echo " can be displayed together"
280
280
$(MAKE ) build-addons
281
281
$(MAKE ) build-addons-napi
282
282
$(MAKE ) cctest
283
283
$(MAKE ) jstest
284
284
285
285
# Used by `make coverage-test`
286
286
test-cov : all
287
- # Build the addons before running the tests so the test results
288
- # can be displayed together
287
+ @echo " Build the addons before running the tests so the test results"
288
+ @echo " can be displayed together"
289
289
$(MAKE ) build-addons
290
290
$(MAKE ) build-addons-napi
291
291
# $(MAKE) cctest
@@ -399,7 +399,7 @@ build-addons-napi: | $(NODE_EXE) test/addons-napi/.buildstamp
399
399
400
400
.PHONY : clear-stalled
401
401
clear-stalled :
402
- # Clean up any leftover processes but don't error if found.
402
+ @echo " Clean up any leftover processes but don't error if found."
403
403
ps awwx | grep Release/node | grep -v grep | cat
404
404
@PS_OUT=` ps awwx | grep Release/node | grep -v grep | awk ' {print $$1}' ` ; \
405
405
if [ " $$ {PS_OUT}" ]; then \
@@ -437,7 +437,7 @@ test-ci-js: | clear-stalled
437
437
$(PYTHON ) tools/test.py $(PARALLEL_ARGS ) -p tap --logfile test.tap \
438
438
--mode=$(BUILDTYPE_LOWER ) --flaky-tests=$(FLAKY_TESTS ) \
439
439
$(TEST_CI_ARGS ) $(CI_JS_SUITES )
440
- # Clean up any leftover processes, error if found.
440
+ @echo " Clean up any leftover processes, error if found."
441
441
ps awwx | grep Release/node | grep -v grep | cat
442
442
@PS_OUT=` ps awwx | grep Release/node | grep -v grep | awk ' {print $$1}' ` ; \
443
443
if [ " $$ {PS_OUT}" ]; then \
@@ -452,7 +452,7 @@ test-ci: | clear-stalled build-addons build-addons-napi doc-only
452
452
$(PYTHON ) tools/test.py $(PARALLEL_ARGS ) -p tap --logfile test.tap \
453
453
--mode=$(BUILDTYPE_LOWER ) --flaky-tests=$(FLAKY_TESTS ) \
454
454
$(TEST_CI_ARGS ) $(CI_JS_SUITES ) $(CI_NATIVE_SUITES ) $(CI_DOC )
455
- # Clean up any leftover processes, error if found.
455
+ @echo " Clean up any leftover processes, error if found."
456
456
ps awwx | grep Release/node | grep -v grep | cat
457
457
@PS_OUT=` ps awwx | grep Release/node | grep -v grep | awk ' {print $$1}' ` ; \
458
458
if [ " $$ {PS_OUT}" ]; then \
0 commit comments