mirror of
https://github.com/reactos/CMake.git
synced 2024-11-30 23:10:26 +00:00
CTest: Coverage handler: expect certain output lines from gcov 4.7 (#13657)
And do not report them as errors.
This commit is contained in:
parent
7ecaa4047b
commit
61ace1df26
@ -1097,10 +1097,17 @@ int cmCTestCoverageHandler::HandleGCovCoverage(
|
||||
}
|
||||
else
|
||||
{
|
||||
cmCTestLog(this->CTest, ERROR_MESSAGE,
|
||||
"Unknown gcov output line: [" << line->c_str() << "]" << std::endl);
|
||||
cont->Error ++;
|
||||
//abort();
|
||||
// gcov 4.7 can have output lines saying "No executable lines" and
|
||||
// "Removing 'filename.gcov'"... Don't log those as "errors."
|
||||
if(*line != "No executable lines" &&
|
||||
!cmSystemTools::StringStartsWith(line->c_str(), "Removing "))
|
||||
{
|
||||
cmCTestLog(this->CTest, ERROR_MESSAGE,
|
||||
"Unknown gcov output line: [" << line->c_str() << "]"
|
||||
<< std::endl);
|
||||
cont->Error ++;
|
||||
//abort();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user