1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
# Code coverage of tests
This directory contains a script which generates statistics
about the code coverage of the tests.
A call of `./run.sh` will compile all tests with code coverage
parameters and execute all tests to gather the information.
## Prerequisites
* The GCC utility [gcov][GCOV] has to be installed and
`g++` has to be used as compiler.
* The HTML output is generated by the [lcov][LCOV] tool.
[GCOV]: http://gcc.gnu.org/onlinedocs/gcc/Gcov.html "gcov"
[LCOV]: http://ltp.sourceforge.net/coverage/lcov.php "lcov"
|