|
From: Benoit P. <ben...@en...> - 2005-04-26 22:44:30
|
On Tue, 26 Apr 2005 17:01:17 -0500 (CDT) Nicholas Nethercote <nj...@cs...> wrote: > Nice job. I've only scanned the code quickly so far, but I have three > immediate questions: >=20 > - Are you sure you're developing from the Subversion repository? It=20 > really looks to me like you're working from CVS. Oops, you're right. > - Is a new output file generated for each execution? An important=20 > feature of coverage tools is that you want to be able to run a program=20 > multiple times, and get the total coverage from all the executions, not=20 > just a single one. So that way you can, for example, run your test suite= =20 > with many tests and then at the end get a coverage figure. The output is named using the process's pid. But using the cover script you can merge two output files into a new one. > - Does cv_header.h need to be separate -- could its contents just be pu= t=20 > into cv_main.c? It can be put into cv_main.c, I separated it for readability and because=20 I thought it didn't really belong to the tool. > Thanks for releasing this version! :) Next one soon :) Benoit PS: No need to CC me, I'm on the list now. |