diff options
author | Christian Heimes <christian@cheimes.de> | 2013-07-31 00:55:18 +0200 |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2013-07-31 00:55:18 +0200 |
commit | fd8632d4410d824abfc47c2df661cf437bd7fd2e (patch) | |
tree | cb1cb5f65603012fd61a4712c6ce204fb109f532 /.hgignore | |
parent | c6959a6282e41660dcc8713215392c1ecdd600a6 (diff) | |
download | cpython-fd8632d4410d824abfc47c2df661cf437bd7fd2e.tar.gz |
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 |