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