Merge branch 'CTestScheduler'

This commit is contained in:
Brad King 2010-06-07 14:18:30 -04:00
commit 6068651cf7

View File

@ -453,15 +453,24 @@ void cmCTestMultiProcessHandler::CreateTestCostList()
for(TestMap::iterator i = this->Tests.begin(); for(TestMap::iterator i = this->Tests.begin();
i != this->Tests.end(); ++i) i != this->Tests.end(); ++i)
{ {
std::string name = this->Properties[i->first]->Name; //We only want to schedule them by cost in a parallel situation
if(std::find(this->LastTestsFailed.begin(), this->LastTestsFailed.end(), if(this->ParallelLevel > 1)
name) != this->LastTestsFailed.end())
{ {
this->TestCosts[FLT_MAX].insert(i->first); std::string name = this->Properties[i->first]->Name;
if(std::find(this->LastTestsFailed.begin(), this->LastTestsFailed.end(),
name) != this->LastTestsFailed.end())
{
this->TestCosts[FLT_MAX].insert(i->first);
}
else
{
this->TestCosts[this->Properties[i->first]->Cost].insert(i->first);
}
} }
else else //we ignore their cost
{ {
this->TestCosts[this->Properties[i->first]->Cost].insert(i->first); this->TestCosts[this->Tests.size()
- this->Properties[i->first]->Index].insert(i->first);
} }
} }
} }