Add test code coverage analysis.

Add test code coverage analysis based on gcov.
This commit is contained in:
Jason Evans
2013-12-06 18:27:33 -08:00
parent d37d5adee4
commit 748dfac778
7 changed files with 127 additions and 10 deletions

12
.gitignore vendored
View File

@@ -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