Exclusion markers for gcov

旧城冷巷雨未停 提交于 2019-12-08 02:06:10

问题


I'm using gcov to measure coverage in my C++ code.

I'd like to be able to mark certain lines of source code so that they are excluded from coverage reporting when using gcovr. I know they exist because I stumbled across them once but now I can't find where I saw them.

I'm not using lcov to report coverage so references to such markers are no good to me.

Can anyone point me to the right place?

TIA


回答1:


I figured this out finally. The lcov exclusion markers are valid with gcovr.

The following markers are recognized by geninfo:

  • LCOV_EXCL_LINE
    • Lines containing this marker will be excluded.
  • LCOV_EXCL_START
    • Marks the beginning of an excluded section. The current line is part of this section.
  • LCOV_EXCL_STOP
    • Marks the end of an excluded section. The current line not part of this section.

You can also replace 'LCOV' above with 'GCOV' or 'GCOVR'. They all work.



来源:https://stackoverflow.com/questions/27623733/exclusion-markers-for-gcov

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!