if a line has an hit count > int, the reportgeneration fails with:
Initiating parser for LCov
Error during reading report 'lcov.info' (Size: 50.7MB): Value was either too large or too small for an Int32.
can you change that to long?
|
int visits = int.Parse(line.Substring(line.IndexOf(',') + 1)); |
if a line has an hit count > int, the reportgeneration fails with:
Initiating parser for LCov
Error during reading report 'lcov.info' (Size: 50.7MB): Value was either too large or too small for an Int32.
can you change that to long?
ReportGenerator/src/ReportGenerator.Core/Parser/LCovParser.cs
Line 148 in 9a9a0cc