CTest: fix dashboard issues associated with the ctest-fix-run-serial topic

This commit is contained in:
Nils Gladitz
2013-10-23 21:47:32 +02:00
parent 7a665ae7e3
commit ff59365f8b
3 changed files with 24 additions and 8 deletions
+20 -7
View File
@@ -470,14 +470,18 @@ void cmCTestMultiProcessHandler::CreateTestCostList()
priorityStack.push_back(TestSet());
TestSet &currentSet = priorityStack.back();
for(TestSet::iterator i = previousSet.begin();
for(TestSet::const_iterator i = previousSet.begin();
i != previousSet.end(); ++i)
{
TestSet const& dependencies = this->Tests[*i];
currentSet.insert(dependencies.begin(), dependencies.end());
for(TestSet::const_iterator j = dependencies.begin();
j != dependencies.end(); ++j)
{
currentSet.insert(*j);
}
}
for(TestSet::iterator i = currentSet.begin();
for(TestSet::const_iterator i = currentSet.begin();
i != currentSet.end(); ++i)
{
previousSet.erase(*i);
@@ -492,15 +496,24 @@ void cmCTestMultiProcessHandler::CreateTestCostList()
for(std::list<TestSet>::reverse_iterator i = priorityStack.rbegin();
i != priorityStack.rend(); ++i)
{
TestSet &currentSet = *i;
TestSet const& currentSet = *i;
TestComparator comp(this);
TestList sortedCopy;
sortedCopy.insert(sortedCopy.end(), currentSet.begin(), currentSet.end());
for(TestSet::const_iterator j = currentSet.begin();
j != currentSet.end(); ++j)
{
sortedCopy.push_back(*j);
}
std::stable_sort(sortedCopy.begin(), sortedCopy.end(), comp);
this->SortedTests.insert(this->SortedTests.end(),
sortedCopy.begin(), sortedCopy.end());
for(TestList::const_iterator j = sortedCopy.begin();
j != sortedCopy.end(); ++j)
{
this->SortedTests.push_back(*j);
}
}
}