mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-06-14 03:51:40 +00:00
Remove useless information from the code coverage
This commit is contained in:
parent
41462e77b6
commit
f11bd58b24
7
debian/rules
vendored
7
debian/rules
vendored
@ -226,9 +226,12 @@ override_dh_auto_test:
|
|||||||
cd build-llvm/ && $(MAKE) polly-test -C tools/polly/test/ || true
|
cd build-llvm/ && $(MAKE) polly-test -C tools/polly/test/ || true
|
||||||
|
|
||||||
if test "$(CODECOVERAGE)" = "yes"; then \
|
if test "$(CODECOVERAGE)" = "yes"; then \
|
||||||
|
REPORT=reports/scilab-code-coverage.info; \
|
||||||
mkdir -p reports/; \
|
mkdir -p reports/; \
|
||||||
lcov --directory build-llvm/ --capture --ignore-errors source --output-file reports/scilab-code-coverage.info; \
|
lcov --directory build-llvm/ --capture --ignore-errors source --output-file $$REPORT; \
|
||||||
genhtml -o reports/coverage --show-details --highlight --legend reports/scilab-code-coverage.info; \
|
lcov --remove $$REPORT "/usr*" -o $$REPORT
|
||||||
|
lcov --remove $$REPORT "build-llvm/*" -o $$REPORT
|
||||||
|
genhtml -o reports/coverage --show-details --highlight --legend $$REPORT; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
override_dh_gencontrol:
|
override_dh_gencontrol:
|
||||||
|
Loading…
Reference in New Issue
Block a user