OpenCppCoverage

Results 85 comments of OpenCppCoverage

Hello, Thank you for this pull request and sorry for my late answer. I merged locally your pull request on master and ran the following command in optimized build x86...

Thank you for this detailed explanation! Side-effect was not the right term to use. I wanted to mean that OpenCppCoverage is used on different versions of Windows and it is...

Hello, Unfortunately, OpenCppCoverage does not fit well to your use case. Indeed, it needs to know the memory locations of each source code line and so it needs to read...

I will investigate if caching some data can help.

Hello, You can export the coverage to XML with [--export_type=cobertura](https://github.com/OpenCppCoverage/OpenCppCoverage/wiki/Command-line-reference#--export_type-arg). Then, you can create a small program or script that parses the XML and returns an exit code not equal...

You can also write a plugin to compute the coverage: [Writing an export plugin](https://github.com/OpenCppCoverage/OpenCppCoverage/wiki/Writing-an-export-plugin).

Hello, I disabled the managed modules because OpenCppCoverage supports only the unmanaged code. For example, there is a crash in [this case](https://github.com/OpenCppCoverage/OpenCppCoverage/issues/9) (See my first reply). In your case, you...

@WimLeflere : Please see my comment https://github.com/OpenCppCoverage/OpenCppCoverage/pull/78

Hello, It is a common misunderstanding on how OpenCppCoverage works. I have just updated the documentation. *OpenCppCoverage discovers modules based on what was loaded by the program under the code...

Hello, I did not forget this task. Now I am working on the OpenCppCoverage plugin and once the new version will be done, I will go back to this task....