diff options
author | Christian Heimes <christian@cheimes.de> | 2013-07-30 22:55:18 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2013-07-30 22:55:18 (GMT) |
commit | 49e52f9375c23d88023344a6fd441fd2a4124dc6 (patch) | |
tree | 960dce8598a80570ccfff6e7de1a4f5cd7420dac /.hgignore | |
parent | 3b998d1086b8dee0f70dac91d3ea50a8819a8566 (diff) | |
download | cpython-49e52f9375c23d88023344a6fd441fd2a4124dc6.zip cpython-49e52f9375c23d88023344a6fd441fd2a4124dc6.tar.gz cpython-49e52f9375c23d88023344a6fd441fd2a4124dc6.tar.bz2 |
Issue #18481: Add C coverage reporting with gcov and lcov. A new make target
"coverage-report" creates an instrumented Python build, runs unit tests
and creates a HTML. The report can be updated with "make coverage-lcov".
Diffstat (limited to '.hgignore')
-rw-r--r-- | .hgignore | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -36,6 +36,7 @@ Modules/Setup.local Modules/config.c Modules/ld_so_aix$ Parser/pgen$ +^lcov-report/ ^core ^python-gdb.py ^python.exe-gdb.py @@ -91,3 +92,7 @@ Modules/_testembed .coverage coverage/ htmlcov/ +*.gcda +*.gcno +*.gcov +coverage.info |