gcov
What's the best C++ code coverage tool that works with templates?
I have used gcov for testing code coverage, but when it comes to templated c++ code it doesn\'t work so well. I use boost::spirit extensively and gcov seems to simply ignore templated spirit code.[详细]
2023-04-12 02:38 分类:问答gcov: cannot open graph file
I am trying to use gcov.开发者_如何转开发 I have this simple file a.c: int main() { return 0; } So I do[详细]
2023-03-22 13:51 分类:问答Looking for a way to exclude files used by geninfo/genhtml
We are trying to use geninfo and genhtml (alternative to gcovr, see here) to produce an html page using coverage provided by gcov.[详细]
2023-03-19 15:55 分类:问答Unit tests take a long time to run. Valgrind problem? Gcov problem?
I\'ve created a unit test suite for a project I\'m working on. My unit tests used to run very quickly... 200+ of them would run within a few seconds. Typically each test would take less than 10 millis[详细]
2023-03-14 04:20 分类:问答What are your tips for interpreting gcov output in order to improve coverage?
I\'m successfully using gcov in my project: I can build my project with gcov flags: -fprofile-arcs -ftest-coverage[详细]
2023-03-08 09:10 分类:问答gcov final link failed
While compiling my project with gcov support I am facing the below error Following are flags information i have while com开发者_如何学Pythonpiling[详细]
2023-03-04 09:21 分类:问答Core dump and gcov coverage report
I\'m doing stress testing on multi-threaded program and collecting coverage as well. As far as I know, gcov doesn\'t produce .gcda files when program is terminated by _exit() or some signals such as S[详细]
2023-02-26 01:01 分类:问答Version of gcov that supports code coverage for shared library
Which version of gcov supports the code-cov开发者_JAVA百科erage of shared libraries?I am using gcc/gcov 4.1.2 and it works for taking code coverage of shared libraries.[详细]
2023-02-23 04:03 分类:问答shared library coverage test with gcov [Linux/Fortran]
I am trying to perform a coverage test of a shared library. I have chosen for gcov/lcov due to the fact, that it is free and open source, which means, I can try it immediately (commercial software wou[详细]
2023-02-13 18:14 分类:问答How to use gcov with QMake for code coverage
I would like to use gcov with my unit test written using QTestLib.I have managed to generate some .gcno files along my object files by adding this to my .pro file :[详细]
2023-01-25 06:56 分类:问答