Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Lau <rlau@redhat.com>2021-07-12 14:01:03 +0300
committerJames M Snell <jasnell@gmail.com>2021-07-19 18:04:45 +0300
commit7959b6d8e9b962b801bcc4aafef89da6ab0368ef (patch)
tree2f8442513987dffcb7d4968a812ca682d5e79a88 /Makefile
parent74e319f2102bd492cc16e9abb407a3f03d8cdd82 (diff)
build: update coverage Makefile target comments
Update the comments for the `coverage` Makefile target. - Source files under `lib` are no longer instrumented since https://github.com/nodejs/node/commit/d1dee495db1451e74f5364c8687148a53ff0b50d - Fix the name of the related CI job. PR-URL: https://github.com/nodejs/node/pull/39365 Refs: https://github.com/nodejs/node/pull/25157 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 4 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index e4d13a818a6..76874383f60 100644
--- a/Makefile
+++ b/Makefile
@@ -210,11 +210,10 @@ coverage-clean:
-type f -exec $(RM) {} \;
.PHONY: coverage
-# Build and test with code coverage reporting. Leave the lib directory
-# instrumented for any additional runs the user may want to make.
-# For C++ coverage reporting, this needs to be run in conjunction with configure
-# --coverage. html coverage reports will be created under coverage/
-# Related CI job: node-test-commit-linux-coverage
+# Build and test with code coverage reporting. HTML coverage reports will be
+# created under coverage/. For C++ coverage reporting, this needs to be run
+# in conjunction with configure --coverage.
+# Related CI job: node-test-commit-linux-coverage-daily
coverage: coverage-test ## Run the tests and generate a coverage report.
.PHONY: coverage-build