mirror of
https://github.com/nodejs/node.git
synced 2024-11-29 23:16:30 +01:00
src: fix code coverage cleanup
In https://github.com/nodejs/node/pull/17987 which updated the location of the code coverage patches I missed a few changes needed to properly clean up for code coverage. Add these. PR-URL: https://github.com/nodejs/node/pull/18081 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Jon Moss <me@jonathanmoss.me> Reviewed-By: James M Snell <jasnell@gmail.com>
This commit is contained in:
parent
8f153092d8
commit
8229fc0715
4
Makefile
4
Makefile
@ -145,7 +145,7 @@ check: test
|
||||
coverage-clean:
|
||||
if [ -d lib_ ]; then $(RM) -r lib; mv lib_ lib; fi
|
||||
$(RM) -r node_modules
|
||||
$(RM) -r gcovr testing
|
||||
$(RM) -r gcovr build
|
||||
$(RM) -r out/$(BUILDTYPE)/.coverage
|
||||
$(RM) -r .cov_tmp
|
||||
$(RM) out/$(BUILDTYPE)/obj.target/node/{src,gen}/*.gcda
|
||||
@ -172,7 +172,7 @@ coverage-build: all
|
||||
$(NODE) ./deps/npm install nyc --no-save --no-package-lock; fi
|
||||
if [ ! -d gcovr ]; then git clone --depth=1 \
|
||||
--single-branch git://github.com/gcovr/gcovr.git; fi
|
||||
if [ ! -d testing ]; then git clone --depth=1 \
|
||||
if [ ! -d build ]; then git clone --depth=1 \
|
||||
--single-branch https://github.com/nodejs/build.git; fi
|
||||
if [ ! -f gcovr/scripts/gcovr.orig ]; then \
|
||||
(cd gcovr && patch -N -p1 < \
|
||||
|
Loading…
Reference in New Issue
Block a user