在Ubuntu系统中,你可以使用多种C编译器和代码测试覆盖率工具
在Ubuntu中,你可以使用以下命令安装GCC编译器(以GCC 10为例):
sudo apt update
sudo apt install g++ build-essential
Ubuntu提供了gcov
和lcov
等工具来计算代码覆盖率。首先,安装gcov
:
sudo apt install gcc-10-gcov
接下来,安装lcov
和genhtml
:
sudo apt install lcov genhtml
创建一个名为example.c
的文件,其中包含以下内容:
#include <stdio.h>
int main() {
int a = 1;
int b = 2;
int c = a + b;
printf("The sum of %d and %d is %d\n", a, b, c);
return 0;
}
使用GCC编译器编译上述C程序,并使用-fprofile-arcs
和-ftest-coverage
选项生成覆盖率信息:
gcc-10 -fprofile-arcs -ftest-coverage -o example example.c
运行编译后的程序:
./example
接下来,使用lcov
生成覆盖率报告:
lcov --capture --directory . --output-file coverage.info
最后,使用genhtml
将覆盖率报告转换为HTML格式:
genhtml coverage.info --output-directory coverage_report
现在,你可以在coverage_report
目录下找到生成的覆盖率报告。打开index.html
文件,查看代码覆盖率结果。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。