blob: af6048e39e7879c0d0f9d271a31fca0036a2b683 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
= Code Coverage
We use the link:https://gcc.gnu.org/onlinedocs/gcc/Gcov-Intro.html#Gcov-Intro[gcov] tool to know our tests coverage.
[source,shell]
----
$ make clean
$ make coverage
----
If completed with success, a pretty report will be available in `${source_tree}/build/coverage/index.html`
|