diff options
author | Jason Evans <jasone@canonware.com> | 2013-12-07 02:27:33 (GMT) |
---|---|---|
committer | Jason Evans <jasone@canonware.com> | 2013-12-07 02:50:51 (GMT) |
commit | 748dfac7788e3cbc2fc6d36196a81d3f002669f6 (patch) | |
tree | 24e8442f137a37e29eac28d0b9e4007030a23cc9 /.gitignore | |
parent | d37d5adee4e4570cfda83e5f1b948a25b9226224 (diff) | |
download | jemalloc-748dfac7788e3cbc2fc6d36196a81d3f002669f6.zip jemalloc-748dfac7788e3cbc2fc6d36196a81d3f002669f6.tar.gz jemalloc-748dfac7788e3cbc2fc6d36196a81d3f002669f6.tar.bz2 |
Add test code coverage analysis.
Add test code coverage analysis based on gcov.
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -1,3 +1,5 @@ +/*.gcov.* + /autom4te.cache/ /bin/jemalloc.sh @@ -32,6 +34,8 @@ /include/jemalloc/jemalloc_mangle.h /src/*.[od] +/src/*.gcda +/src/*.gcno /test/test.sh test/include/test/jemalloc_test.h @@ -39,18 +43,26 @@ test/include/test/jemalloc_test.h /test/integration/[A-Za-z]* !/test/integration/[A-Za-z]*.* /test/integration/*.[od] +/test/integration/*.gcda +/test/integration/*.gcno /test/integration/*.out /test/src/*.[od] +/test/src/*.gcda +/test/src/*.gcno /test/stress/[A-Za-z]* !/test/stress/[A-Za-z]*.* /test/stress/*.[od] +/test/stress/*.gcda +/test/stress/*.gcno /test/stress/*.out /test/unit/[A-Za-z]* !/test/unit/[A-Za-z]*.* /test/unit/*.[od] +/test/unit/*.gcda +/test/unit/*.gcno /test/unit/*.out /VERSION |