Update for gcovr

The gcovr command provides a utility for running the gcov command and summarizing code coverage results. This command is inspired by the Python coverage.py package, which provides a similar utility in Python. Further, gcovr can be viewed as a command-line alternative of the lcov utility, which runs gcov and generates an HTML output.

Recently, the gcovr script has been broken out into a separate software package, which is managed at

https://software.sandia.gov/svn/public/fast/gcovr

This package has been uploaded to the Python PyPI repository to facilitate it installation with easy_install:

easy_install gcovr

Alternatively, the gcovr script can be downloaded directly:


See the gcovr Trac page for further details about this tool. Although gcovr is increasingly used to generate coverage statistics within Hudson, the gcovr wiki documents a command-line text summary that I personally find very useful when developing tests to improve code coverage.

Comments

Popular posts from this blog

Python Plugin Frameworks

Using AsciiDoc for Mathematical Publications

A Different Model for Writing Blog Posts