You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Given #327, one work around may be, if we can somehow ignore the function signatures, while keeping the function bodies un-ignored. However, I am not sure whether this is possible currently.
For implementation, one naive way may be:
Users add comments such as // coverage_off_begin and // coverage_off_end (like in other langauges)
Adding a post-processing script, which inputs LCOV report (or whatever), parse the source code, sees (e.g.) line 10-15 is marked ignored by that comment, then change LCOV report by removing those lines.
The text was updated successfully, but these errors were encountered:
Given #327, one work around may be, if we can somehow ignore the function signatures, while keeping the function bodies un-ignored. However, I am not sure whether this is possible currently.
For implementation, one naive way may be:
// coverage_off_begin
and// coverage_off_end
(like in other langauges)The text was updated successfully, but these errors were encountered: