User Tools

Site Tools


developers:coverage

This is an old revision of the document!


Code Coverage

Motivations

In computer science, code coverage is a measure used to describe the degree to which the source code of a program is tested by a particular test suite. A program with high code coverage has been more thoroughly tested and has a lower chance of containing software bugs than a program with low code coverage. Many different metrics can be used to calculate code coverage; some of the most basic are the percent of program subroutines and the percent of program statements called during execution of the test suite.[1]

We aim that the test suite covers all the functionalities of ABINIT.

How does it work?

ABINIT is built with special options such that every function that is exercised (executed) in the program(s) is mapped back to the function points in the source code.

A .gcno file is generated when the source file is compiled with the GCC -ftest-coverage option. It contains information to reconstruct the basic block graphs and assign source line numbers to blocks.[2]

A .gcda file is generated when a program containing object files built with the GCC -fprofile-arcs option is executed. A separate .gcda file is created for each object file compiled with this option. It contains arc transition counts, and some summary information[2].

We use lcov to analyze the .gcda files for generating a html report (http://ltp.sourceforge.net/coverage/lcov.php)

How to trigger a coverage report ?

There is one slave dedicated to “on-demand” execution of branches by the developers, that produces a code coverage report, at present, tikal_gcc49_cov. It can be launched by the general “on-demand” interface (contact Jean-Michel or Xavier if you do not yet have access to it). Code coverage reports from recent runs of the tests are available here If you see parts of the code which are not well tested, please contribute to improving coverage by writing new tests !


References [1] Wikipedia [2] gcc.gnu.org

developers/coverage.1518464906.txt.gz · Last modified: 2018/02/12 20:48 by Jean-Michel Beuken