Patch gcovr script
parent
1d1d2f23ec
commit
6340421f51
|
|
@ -632,7 +632,7 @@ def process_gcov_data(data_fname, covdata, source_fname, options):
|
|||
elif tmp[0] == '=':
|
||||
is_code_statement = True
|
||||
uncovered_exceptional.add(lineno)
|
||||
elif tmp[0] in "0123456789":
|
||||
elif tmp[0] in "0123456789" and not segments[0].endswith("*"):
|
||||
is_code_statement = True
|
||||
covered[lineno] = int(segments[0].strip())
|
||||
elif tmp.startswith('branch'):
|
||||
|
|
|
|||
Loading…
Reference in New Issue