我正在尝试使用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
有任何想法吗?