c – 生成lcov的分支覆盖数据

前端之家收集整理的这篇文章主要介绍了c – 生成lcov的分支覆盖数据前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试使用lcov代码覆盖率指标,但是我无法使分支机构覆盖工作.

以下是我使用它的方式:

g++ -ggdb3 --coverage src/read.c tests/test.cpp -o bin/test 
lcov --zerocounters --directory $PWD 
lcov --capture --initial --directory $PWD --output-file coverage_output  
./bin/test 
lcov --no-checksum --directory $PWD --capture --output-file coverage_output 
genhtml --branch-coverage --highlight --legend --output-directory out coverage_output

但我得到:

Overall coverage rate:
lines……: 100.0% (60 of 60 lines)
functions..: 100.0% (26 of 26 functions)
branches…: no data found

有任何想法吗?

解决方法

LCOV的最新版本默认禁用分支覆盖.

您需要重新启用它:

>编辑.lcovrc文件(从/ etc / lcovrc复制)将lcov_branch_coverage设置更改为1> – 将lcv_branch_coverage = 1添加到lcov命令行

原文链接:https://www.f2er.com/c/113203.html

猜你在找的C&C++相关文章