GCC Code Coverage Report


Directory: ./
File: test.c
Date: 2024-10-11 07:43:04
Exec Total Coverage
Lines: 0 1 0.0%
Functions: 0 1 0.0%
Branches: 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