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
The times2 function is templated and listed several times with the different debug symbol identifiers.
cpp-coveralls simply appends a new element to its coverage array for each line, so the lines 100-103 are counted 3 times each, which causes a shift in the reported lines (and they end up going "off the end" of the file contents because it is now larger than the number of lines in the file). This makes all the coverage lines after this inconsistent and unreliable (and also undetectable to the typical user reading the report).
The text was updated successfully, but these errors were encountered:
My
.gcno
files get transformed into.gcov
files that end up looking like the following:The
times2
function is templated and listed several times with the different debug symbol identifiers.cpp-coveralls
simply appends a new element to its coverage array for each line, so the lines 100-103 are counted 3 times each, which causes a shift in the reported lines (and they end up going "off the end" of the file contents because it is now larger than the number of lines in the file). This makes all the coverage lines after this inconsistent and unreliable (and also undetectable to the typical user reading the report).The text was updated successfully, but these errors were encountered: