Peter Oberparleiter
Peter Oberparleiter
The web page content should really replace the existing README. Converting it to .MD format should be easy enough, but I'm seeing two open questions: 1. How to automatically generate...
You may have a point about keeping things simple and storing the HTML as part of the source tree - I'll need to think about that some more. The diffcov...
It's not rendered HTML - just a mock-up of how a miniaturized version of the source code looks with colors. See the following for an example: http://ltp.sourceforge.net/coverage/lcov/output/example/methods/gauss.c.gcov.frameset.html The image in...
I tried to reproduce the problem with GNU g++ 4.8.5 but the result was as expected: both test.info and base.info contain an execution count of 1 for lines 3 and...
It appears that the cause for this problem lies in geninfo's read_gcno_function_record() function that assumes that a function's starting line is always instrumented. This seems to be true for .gcno...
So is the file that lcov complains about actually readable by the current user? What does `ls -l /var/lib/dkms/emulab-ipod-dkms/3.3.0/build/ipod.gcno` show?
So this confirms that the .gcno files that lcov requires for collecting coverage data are not present at the expected location. Are you using separate build and test machines? If...
LCOV does not look at preprocessed code output, only at the original source code files associated with each coverage data file (.gcda). I don't see a feasible way to implement...
Thank you for your contribution to LCOV. Differential coverage analysis support has been a long-standing TODO for LCOV and from a first look, your implementation seems very feature-rich. That said,...
Sorry for not getting back to you on this PR sooner. I'm still hopeful that I'll be able to help with getting this merged, but given the size of changes...