BUG: Fix coverage handler initialization

This resets coverage handler internal state on initialization so that
multiple coverage runs are independent.
This commit is contained in:
Brad King 2009-03-02 15:32:59 -05:00
parent 3838ec7d9f
commit c4596605df
1 changed files with 5 additions and 2 deletions

View File

@ -152,7 +152,10 @@ cmCTestCoverageHandler::cmCTestCoverageHandler()
void cmCTestCoverageHandler::Initialize()
{
this->Superclass::Initialize();
this->CustomCoverageExclude.empty();
this->CustomCoverageExclude.clear();
this->SourceLabels.clear();
this->LabelIdMap.clear();
this->Labels.clear();
}
//----------------------------------------------------------------------
@ -346,7 +349,7 @@ int cmCTestCoverageHandler::ProcessHandler()
cont.OFS = &ofs;
// setup the regex exclude stuff
this->CustomCoverageExcludeRegex.empty();
this->CustomCoverageExcludeRegex.clear();
std::vector<cmStdString>::iterator rexIt;
for ( rexIt = this->CustomCoverageExclude.begin();
rexIt != this->CustomCoverageExclude.end();