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

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