GCC Code Coverage Report


Directory: ./
File: test.c
Date: 2025-11-24 09:40:40
Coverage Exec Excl Total
Lines: 0.0% 0 0 1
Functions: 0.0% 0 0 1
Branches: -% 0 0 0

Line Branch Exec Source
1 #include <stdio.h>
2
3 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