|
From: Jeremy F. <je...@go...> - 2003-10-13 23:46:38
|
On Mon, 2003-10-13 at 16:30, Daniel Veillard wrote: > To me Valgrind allows me to automate very thorough regression tests > and get a really high level of confidence in the code that passed though > it. But I have still a concern about the code that did not get exercized > though my valgrind regression tests. So I am wondering if someone made > some code coverage analysis tool based on valgrind. It would require > building, saving and loading annotated maps of the text segment and > a report generator. Is there anything similar ? I think it would make > a very nice addition to kcachegrind which does already most of the > UI work needed to provide such information, maybe working with a > (potentially large) set of cachegrind files this could be possible. > Does this exists ? vgprof (see http://www.goop.org/~jeremy/valgrind) does this. It generates gprof-style output, which seemed like a good idea at the time, but there's probably some more useful format it could be generating (gcov?). J |