GCC Code Coverage Report
Directory:
./
Coverage:
low: ≥ 0%
medium: ≥ 75.0%
high: ≥ 90.0%
Coverage
Exec / Excl / Total
Lines:
100.0%
6 / 0 / 6
Functions:
100.0%
1 / 0 / 1
Branches:
-%
0 / 0 / 0
List of functions
Function (File:Line)
Calls
Lines
Branches
Blocks
main (main.c:6)
called 1 time
100.0%
-%
100.0%
main.c
6 covered
0 uncovered
0 partial covered
0 excluded
Line
Branch
Exec
Source
1
#include
<stdio.h>
2
3
#include
"foo.h"
4
#include
"test.h"
5
6
1
int
main
(
void
)
{
7
1
printf
(
"Start calling foo() ...
\n
"
);
8
1
foo
(
1
);
9
1
foo
(
2
);
10
1
test_zero
();
11
1
return
0
;
12
}
13