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

main.c
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