共有三个文件u1.c , u2.c 和 common.c
ut1.c 的内容
#include<stdio.h>
void fun1();
int main(){
fun1();
}
ut2.c 的内容
#include<stdio.h>
void fun2();
int main(){
fun2();
}
common.c的内容
void fun1(){
printf("fun1\n");
}
void fun2(){
printf("fun2\n");
}
编译步骤:-
gcc -Wall -fprofile-arcs -ftest-coverage ut1.c common.c -o ut1
gcc -Wall -fprofile-arcs -ftest-coverage ut2.c common.c -o ut2
执行步骤:-
./ut1
./ut2
现在,当运行gcov common.c时,只有 fun2 覆盖范围即将到来。
-: 0:Source:common.c
-: 0:Graph:common.gcno
-: 0:Data:common.gcda
-: 0:Runs:1
-: 0:Programs:1
-: 1:void fun1(){
-: 2: printf("fun1\n");
-: 3:}
-: 4:
1: 5:void fun2(){
1: 6: printf("fun2\n");
1: 7:}