Relative Content

Tag Archive for gcccode-coverage

Is libgcov.h supposed to be a public interface?

Background: I am already getting coverage results via the built in GCC instrumentation of my C++ code, but I want to report some extra (non-C++) code as covered. (Basically config files.) I think I’ve figured out how to collect the raw data (which is not the point of this question) but getting that forwarded to […]

I want multiple processes writing .gcda data on multiple files

I have compiled my c source files using –coverage. I have a exe which runs this c source files. Usually I open one instance of this exe and generate coverage data but now I want to open 2 instances of this exe and run 2 different tests on theses instances. I want coverage of these tests simultaneously to improve my execution time.