All Projects → gcovr → Gcovr

gcovr / Gcovr

Licence: other
generate code coverage reports with gcc/gcov

Programming Languages

python
139335 projects - #7 most used programming language
c
50402 projects - #5 most used programming language
cpp
1120 projects

Projects that are alternatives of or similar to Gcovr

Cmake Scripts
A selection of useful scripts for use in CMake projects, include code coverage, sanitizers, and dependency graph generation.
Stars: ✭ 202 (-58.09%)
Mutual labels:  clang, gcc, coverage
goverreport
Command line tool for coverage reporting and validation
Stars: ✭ 44 (-90.87%)
Mutual labels:  coverage, coverage-report
Simplecov
Code coverage for Ruby with a powerful configuration library and automatic merging of coverage across test suites
Stars: ✭ 4,362 (+804.98%)
Mutual labels:  coverage, coverage-report
rooki
A stupid simple script runner supporting c, c++, rust, haskell and virtually anything
Stars: ✭ 26 (-94.61%)
Mutual labels:  gcc, clang
unitest
🌎 Seamless node and browser unit testing with code coverage
Stars: ✭ 28 (-94.19%)
Mutual labels:  coverage, coverage-report
lldbg
A lightweight native GUI for LLDB.
Stars: ✭ 83 (-82.78%)
Mutual labels:  gcc, clang
hmg
💝 My personal Gentoo/Linux configuration backup files
Stars: ✭ 16 (-96.68%)
Mutual labels:  gcc, clang
rebuild
Zero-dependency, reproducible build environments
Stars: ✭ 48 (-90.04%)
Mutual labels:  gcc, clang
LocalCoverage.jl
Trivial functions for working with coverage for packages locally.
Stars: ✭ 55 (-88.59%)
Mutual labels:  coverage, coverage-report
frankencover.it
Code coverage for iOS and OSX.
Stars: ✭ 102 (-78.84%)
Mutual labels:  coverage, coverage-report
Boomerang
Boomerang Decompiler - Fighting the code-rot :)
Stars: ✭ 265 (-45.02%)
Mutual labels:  clang, gcc
cdetect
🔬 Detect which compiler and compiler version a Linux executable (in the ELF format) was compiled with
Stars: ✭ 23 (-95.23%)
Mutual labels:  gcc, clang
ci playground
Playground for Cloud CI development for C++
Stars: ✭ 23 (-95.23%)
Mutual labels:  gcc, clang
Ci helloworld
A simple example of how to setup a complete CI environment for C and C++
Stars: ✭ 357 (-25.93%)
Mutual labels:  clang, gcc
enterprise
Code coverage done right.® On-premise enterprise version.
Stars: ✭ 63 (-86.93%)
Mutual labels:  coverage, coverage-report
cpp-compiler-options
Compilation options for different versions of Clang, GCC and MSVC. Provided a generator and different file formats (cmake, xmake, meson, premake5, bjam/b2, ...)
Stars: ✭ 19 (-96.06%)
Mutual labels:  gcc, clang
Covr
Test coverage reports for R
Stars: ✭ 285 (-40.87%)
Mutual labels:  coverage, coverage-report
javadoc-coverage
A Doclet to generate JavaDoc coverage reports ☕️🧪📗
Stars: ✭ 23 (-95.23%)
Mutual labels:  coverage, coverage-report
c-compiler-security
Security-related flags and options for C compilers
Stars: ✭ 125 (-74.07%)
Mutual labels:  gcc, clang
mutant-swarm
Mutation testing framework and code coverage for Hive SQL
Stars: ✭ 20 (-95.85%)
Mutual labels:  coverage, coverage-report

gcovr

generate GCC code coverage reports

website_ • documentation_ • bugtracker_ • GitHub <repo_>_

|GitHub-Actions-badge| |pypi-badge| |codecov-badge| |gitter-badge|

.. begin abstract

Gcovr provides a utility for managing the use of the GNU gcov_ utility and generating summarized code coverage results. This command is inspired by the Python coverage.py_ package, which provides a similar utility for Python.

The gcovr command can produce different kinds of coverage reports:

  • default or :option:--txt<gcovr --txt>: compact human-readable summaries
  • :option:--html<gcovr --html>: HTML summaries
  • :option:--html-details<gcovr --html-details>: HTML report with annotated source files
  • :option:-x/--xml<gcovr --xml>: machine readable XML reports in Cobertura_ format
  • :option:--sonarqube<gcovr --sonarqube>: machine readable XML reports in Sonarqube format
  • :option:--json<gcovr --json>: JSON report with source files structure and coverage
  • :option:--json-summary<gcovr --json-summary>: JSON summary coverage report
  • :option:--csv<gcovr --csv>: CSV report summarizing the coverage of each file
  • :option:--coveralls<gcovr --coveralls>: machine readable JSON reports in Coveralls_ format

Thus, gcovr can be viewed as a command-line alternative to the lcov_ utility, which runs gcov and generates an HTML-formatted report. The development of gcovr was motivated by the need for text summaries and XML reports.

.. _gcov: http://gcc.gnu.org/onlinedocs/gcc/Gcov.html .. _coverage.py: http://nedbatchelder.com/code/coverage/ .. _cobertura: http://cobertura.sourceforge.net/ .. _lcov: http://ltp.sourceforge.net/coverage/lcov.php .. _coveralls: https://coveralls.io/

.. end abstract

Example HTML summary:

.. image:: ./doc/images/screenshot-html.png

Example HTML details:

.. image:: ./doc/images/screenshot-html-details.example.cpp.png

.. begin links

.. _website: http://gcovr.com/ .. _documentation: http://gcovr.com/guide.html .. _repo: https://github.com/gcovr/gcovr/ .. _bugtracker: https://github.com/gcovr/gcovr/issues .. |GitHub-Actions-badge| image:: https://github.com/gcovr/gcovr/workflows/Test/badge.svg?branch=master :target: https://github.com/gcovr/gcovr/actions?query=workflow%3ATest+branch%3Amaster+event%3Apush :alt: GitHub Actions build status .. |pypi-badge| image:: https://img.shields.io/pypi/v/gcovr.svg :target: https://pypi.python.org/pypi/gcovr :alt: install from PyPI .. |codecov-badge| image:: https://codecov.io/gh/gcovr/gcovr/branch/master/graph/badge.svg :target: https://codecov.io/gh/gcovr/gcovr/branch/master :alt: Codecov status .. |gitter-badge| image:: https://badges.gitter.im/gcovr/gcovr.svg :target: https://gitter.im/gcovr/gcovr :alt: Gitter chat

.. end links

Installation

.. begin installation

Gcovr is available as a Python package that can be installed via pip_.

.. _pip: https://pip.pypa.io/en/stable

Install newest stable gcovr release from PyPI:

.. code:: bash

pip install gcovr

Install development version from GitHub:

.. code:: bash

pip install git+https://github.com/gcovr/gcovr.git

.. end installation

Quickstart

.. begin quickstart

GCC can instrument the executables to emit coverage data. You need to recompile your code with the following flags:

::

--coverage -g -O0

Next, run your test suite. This will generate raw coverage files.

Finally, invoke gcovr. This will print a tabular report on the console.

::

gcovr -r .

You can also generate detailed HTML reports:

::

gcovr -r . --html --html-details -o coverage.html

Gcovr will create one HTML report per source file next to the coverage.html summary.

You should run gcovr from the build directory. The -r option should point to the root of your project. This only matters if you have a separate build directory.

For complete documentation, read the manual <documentation_>_.

.. end quickstart

Contributing

If you want to report a bug or contribute to gcovr development, please read our contributing guidelines first: <https://github.com/gcovr/gcovr/blob/master/CONTRIBUTING.rst>_

License

.. begin license

Copyright 2013-2021 the gcovr authors

Copyright 2013 Sandia Corporation. Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains certain rights in this software.

Gcovr is available under the 3-clause BSD License. See LICENSE.txt for full details. See AUTHORS.txt for the full list of contributors.

Gcovr development moved to this repository in September, 2013 from Sandia National Laboratories.

.. end license

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].