mirror of
https://github.com/reactos/CMake.git
synced 2024-11-24 12:09:48 +00:00
CTest: Fix GTM coverage parsing line offset bug
In cmParseGTMCoverage::ReadMCovFile, initialize the lineoffset variable. Also set lastoffset only if the function is found (thanks to Bill Hoffman).
This commit is contained in:
parent
549b95f115
commit
782eba3a0c
@ -98,7 +98,7 @@ bool cmParseGTMCoverage::ReadMCovFile(const char* file)
|
||||
bool found = this->FindMumpsFile(routine, filepath);
|
||||
if(found)
|
||||
{
|
||||
int lineoffset;
|
||||
int lineoffset = 0;
|
||||
if(this->FindFunctionInMumpsFile(filepath,
|
||||
function,
|
||||
lineoffset))
|
||||
@ -106,8 +106,8 @@ bool cmParseGTMCoverage::ReadMCovFile(const char* file)
|
||||
cmCTestCoverageHandlerContainer::SingleFileCoverageVector&
|
||||
coverageVector = this->Coverage.TotalCoverage[filepath];
|
||||
coverageVector[lineoffset + linenumber] += count;
|
||||
lastoffset = lineoffset;
|
||||
}
|
||||
lastoffset = lineoffset;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user