2008-07-03 17:31:33 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
|
|
|
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
PURPOSE. See the above copyright notices for more information.
|
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#include "cmCTestMultiProcessHandler.h"
|
|
|
|
#include "cmProcess.h"
|
|
|
|
#include "cmStandardIncludes.h"
|
|
|
|
#include "cmCTest.h"
|
2009-08-27 18:37:30 +04:00
|
|
|
#include "cmSystemTools.h"
|
|
|
|
#include <stdlib.h>
|
2008-07-03 17:31:33 +04:00
|
|
|
|
|
|
|
cmCTestMultiProcessHandler::cmCTestMultiProcessHandler()
|
|
|
|
{
|
|
|
|
this->ParallelLevel = 1;
|
2009-08-28 19:08:39 +04:00
|
|
|
this->Completed = 0;
|
2008-07-03 17:31:33 +04:00
|
|
|
}
|
|
|
|
// Set the tests
|
|
|
|
void
|
2008-07-04 18:28:22 +04:00
|
|
|
cmCTestMultiProcessHandler::SetTests(TestMap& tests,
|
2009-08-26 20:09:06 +04:00
|
|
|
PropertiesMap& properties)
|
2008-07-03 17:31:33 +04:00
|
|
|
{
|
|
|
|
// set test run map to false for all
|
2008-07-04 18:28:22 +04:00
|
|
|
for(TestMap::iterator i = this->Tests.begin();
|
2008-07-03 17:31:33 +04:00
|
|
|
i != this->Tests.end(); ++i)
|
|
|
|
{
|
|
|
|
this->TestRunningMap[i->first] = false;
|
|
|
|
this->TestFinishMap[i->first] = false;
|
|
|
|
}
|
|
|
|
this->Tests = tests;
|
2009-08-28 19:08:39 +04:00
|
|
|
this->Total = this->Tests.size();
|
2009-08-26 20:09:06 +04:00
|
|
|
this->Properties = properties;
|
2008-07-03 17:31:33 +04:00
|
|
|
}
|
2009-08-27 18:37:30 +04:00
|
|
|
|
2008-07-03 17:31:33 +04:00
|
|
|
// Set the max number of tests that can be run at the same time.
|
2009-08-26 20:09:06 +04:00
|
|
|
void cmCTestMultiProcessHandler::SetParallelLevel(size_t level)
|
2008-07-03 17:31:33 +04:00
|
|
|
{
|
2009-08-26 20:09:06 +04:00
|
|
|
this->ParallelLevel = level < 1 ? 1 : level;
|
2008-07-03 17:31:33 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void cmCTestMultiProcessHandler::RunTests()
|
|
|
|
{
|
2009-09-02 18:08:40 +04:00
|
|
|
if(this->CTest->GetBatchJobs())
|
|
|
|
{
|
|
|
|
this->SubmitBatchTests();
|
|
|
|
return;
|
|
|
|
}
|
2009-08-27 18:37:30 +04:00
|
|
|
this->CheckResume();
|
2009-09-02 18:08:40 +04:00
|
|
|
this->TestHandler->SetMaxIndex(this->FindMaxIndex());
|
2008-07-03 17:31:33 +04:00
|
|
|
this->StartNextTests();
|
|
|
|
while(this->Tests.size() != 0)
|
|
|
|
{
|
|
|
|
this->CheckOutput();
|
|
|
|
this->StartNextTests();
|
|
|
|
}
|
|
|
|
// let all running tests finish
|
|
|
|
while(this->CheckOutput())
|
|
|
|
{
|
|
|
|
}
|
2009-08-27 18:37:30 +04:00
|
|
|
this->MarkFinished();
|
2008-07-03 17:31:33 +04:00
|
|
|
}
|
|
|
|
|
2009-09-02 18:08:40 +04:00
|
|
|
void cmCTestMultiProcessHandler::SubmitBatchTests()
|
|
|
|
{
|
2009-09-03 00:32:43 +04:00
|
|
|
for(cmCTest::CTestConfigurationMap::iterator i =
|
2009-09-03 18:47:14 +04:00
|
|
|
this->CTest->CTestConfiguration.begin();
|
|
|
|
i != this->CTest->CTestConfiguration.end(); ++i)
|
2009-09-02 18:08:40 +04:00
|
|
|
{
|
2009-09-03 18:47:14 +04:00
|
|
|
cmCTestLog(this->CTest, HANDLER_OUTPUT, i->first
|
2009-09-03 00:32:43 +04:00
|
|
|
<< " = " << i->second << std::endl);
|
2009-09-02 18:08:40 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-07-03 17:31:33 +04:00
|
|
|
void cmCTestMultiProcessHandler::StartTestProcess(int test)
|
|
|
|
{
|
2009-08-26 20:09:06 +04:00
|
|
|
cmCTestLog(this->CTest, HANDLER_VERBOSE_OUTPUT, test << ": "
|
|
|
|
<< " test " << test << "\n");
|
2008-07-03 17:31:33 +04:00
|
|
|
this->TestRunningMap[test] = true; // mark the test as running
|
|
|
|
// now remove the test itself
|
|
|
|
this->Tests.erase(test);
|
2009-08-26 20:09:06 +04:00
|
|
|
cmCTestRunTest* testRun = new cmCTestRunTest;
|
|
|
|
testRun->SetCTest(this->CTest);
|
|
|
|
testRun->SetTestHandler(this->TestHandler);
|
|
|
|
testRun->SetIndex(test);
|
|
|
|
testRun->SetTestProperties(this->Properties[test]);
|
|
|
|
if(testRun->StartTest())
|
2008-07-03 17:31:33 +04:00
|
|
|
{
|
2009-08-26 20:09:06 +04:00
|
|
|
this->RunningTests.insert(testRun);
|
2008-07-03 17:31:33 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-08-28 19:08:39 +04:00
|
|
|
testRun->EndTest(this->Completed, this->Total);
|
2008-07-03 17:31:33 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cmCTestMultiProcessHandler::StartTest(int test)
|
|
|
|
{
|
|
|
|
// copy the depend tests locally because when
|
|
|
|
// a test is finished it will be removed from the depend list
|
|
|
|
// and we don't want to be iterating a list while removing from it
|
2008-07-04 18:28:22 +04:00
|
|
|
TestSet depends = this->Tests[test];
|
2008-07-03 17:31:33 +04:00
|
|
|
size_t totalDepends = depends.size();
|
|
|
|
if(totalDepends)
|
|
|
|
{
|
2008-07-04 18:28:22 +04:00
|
|
|
for(TestSet::const_iterator i = depends.begin();
|
2008-07-03 17:31:33 +04:00
|
|
|
i != depends.end(); ++i)
|
|
|
|
{
|
|
|
|
// if the test is not already running then start it
|
|
|
|
if(!this->TestRunningMap[*i])
|
|
|
|
{
|
|
|
|
// this test might be finished, but since
|
|
|
|
// this is a copy of the depend map we might
|
|
|
|
// still have it
|
|
|
|
if(!this->TestFinishMap[*i])
|
|
|
|
{
|
|
|
|
// only start one test in this function
|
|
|
|
return this->StartTest(*i);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// the depend has been and finished
|
|
|
|
totalDepends--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// if there are no depends left then run this test
|
|
|
|
if(totalDepends == 0)
|
|
|
|
{
|
|
|
|
// Start this test it has no depends
|
|
|
|
this->StartTestProcess(test);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
// This test was not able to start because it is waiting
|
|
|
|
// on depends to run
|
2009-08-26 20:09:06 +04:00
|
|
|
return false;
|
2008-07-03 17:31:33 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void cmCTestMultiProcessHandler::StartNextTests()
|
|
|
|
{
|
2009-08-28 19:08:39 +04:00
|
|
|
//cmCTestLog(this->CTest, HANDLER_VERBOSE_OUTPUT, std::endl
|
|
|
|
// << "Number of running tests : " << this->RunningTests.size()
|
|
|
|
// << "\n");
|
2008-07-03 17:31:33 +04:00
|
|
|
size_t numToStart = this->ParallelLevel - this->RunningTests.size();
|
|
|
|
if(numToStart == 0)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2008-07-04 18:28:22 +04:00
|
|
|
TestMap tests = this->Tests;
|
|
|
|
for(TestMap::iterator i = tests.begin();
|
2008-07-03 17:31:33 +04:00
|
|
|
i != tests.end(); ++i)
|
|
|
|
{
|
2009-09-03 19:14:13 +04:00
|
|
|
//int processors = this->Properties[i->first]->Processors;
|
2009-09-03 18:47:14 +04:00
|
|
|
|
|
|
|
// if(processors > )
|
2008-07-03 17:31:33 +04:00
|
|
|
// start test should start only one test
|
|
|
|
if(this->StartTest(i->first))
|
|
|
|
{
|
|
|
|
numToStart--;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cmCTestLog(this->CTest, HANDLER_VERBOSE_OUTPUT, std::endl
|
|
|
|
<< "Test did not start waiting on depends to finish: "
|
|
|
|
<< i->first << "\n");
|
|
|
|
}
|
|
|
|
if(numToStart == 0 )
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cmCTestMultiProcessHandler::CheckOutput()
|
|
|
|
{
|
|
|
|
// no more output we are done
|
|
|
|
if(this->RunningTests.size() == 0)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2009-08-26 20:09:06 +04:00
|
|
|
std::vector<cmCTestRunTest*> finished;
|
2008-07-03 17:31:33 +04:00
|
|
|
std::string out, err;
|
2009-08-26 20:09:06 +04:00
|
|
|
for(std::set<cmCTestRunTest*>::const_iterator i = this->RunningTests.begin();
|
2008-07-03 17:31:33 +04:00
|
|
|
i != this->RunningTests.end(); ++i)
|
|
|
|
{
|
2009-08-26 20:09:06 +04:00
|
|
|
cmCTestRunTest* p = *i;
|
|
|
|
p->CheckOutput(); //reads and stores the process output
|
|
|
|
|
2008-07-03 17:31:33 +04:00
|
|
|
if(!p->IsRunning())
|
|
|
|
{
|
|
|
|
finished.push_back(p);
|
|
|
|
}
|
|
|
|
}
|
2009-08-26 20:09:06 +04:00
|
|
|
for( std::vector<cmCTestRunTest*>::iterator i = finished.begin();
|
|
|
|
i != finished.end(); ++i)
|
2008-07-03 17:31:33 +04:00
|
|
|
{
|
2009-08-28 19:08:39 +04:00
|
|
|
this->Completed++;
|
2009-08-26 20:09:06 +04:00
|
|
|
cmCTestRunTest* p = *i;
|
|
|
|
int test = p->GetIndex();
|
2009-08-28 19:08:39 +04:00
|
|
|
|
|
|
|
if(p->EndTest(this->Completed, this->Total))
|
2009-08-26 20:09:06 +04:00
|
|
|
{
|
2009-08-28 19:08:39 +04:00
|
|
|
this->Passed->push_back(p->GetTestProperties()->Name);
|
2009-08-26 20:09:06 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-08-28 19:08:39 +04:00
|
|
|
this->Failed->push_back(p->GetTestProperties()->Name);
|
2009-08-26 20:09:06 +04:00
|
|
|
}
|
|
|
|
for(TestMap::iterator j = this->Tests.begin();
|
|
|
|
j!= this->Tests.end(); ++j)
|
2008-07-03 17:31:33 +04:00
|
|
|
{
|
2009-08-26 20:09:06 +04:00
|
|
|
j->second.erase(test);
|
2008-07-03 17:31:33 +04:00
|
|
|
}
|
2009-08-26 20:09:06 +04:00
|
|
|
this->TestFinishMap[test] = true;
|
|
|
|
this->TestRunningMap[test] = false;
|
|
|
|
this->RunningTests.erase(p);
|
2009-08-27 18:37:30 +04:00
|
|
|
this->WriteCheckpoint(test);
|
2009-08-26 20:09:06 +04:00
|
|
|
|
|
|
|
delete p;
|
2008-07-03 17:31:33 +04:00
|
|
|
}
|
2009-08-26 20:09:06 +04:00
|
|
|
return true;
|
2008-07-03 17:31:33 +04:00
|
|
|
}
|
|
|
|
|
2009-08-27 18:37:30 +04:00
|
|
|
void cmCTestMultiProcessHandler::WriteCheckpoint(int index)
|
|
|
|
{
|
|
|
|
std::string fname = this->CTest->GetBinaryDir()
|
|
|
|
+ "/Testing/Temporary/CTestCheckpoint.txt";
|
|
|
|
std::fstream fout;
|
|
|
|
fout.open(fname.c_str(), std::ios::app);
|
|
|
|
fout << index << "\n";
|
|
|
|
fout.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmCTestMultiProcessHandler::MarkFinished()
|
|
|
|
{
|
|
|
|
std::string fname = this->CTest->GetBinaryDir()
|
|
|
|
+ "/Testing/Temporary/CTestCheckpoint.txt";
|
|
|
|
cmSystemTools::RemoveFile(fname.c_str());
|
|
|
|
}
|
|
|
|
|
2009-08-28 19:08:39 +04:00
|
|
|
//---------------------------------------------------------------------
|
|
|
|
//For ShowOnly mode
|
|
|
|
void cmCTestMultiProcessHandler::PrintTestList()
|
2008-07-03 17:31:33 +04:00
|
|
|
{
|
2009-08-28 19:08:39 +04:00
|
|
|
int count = 0;
|
|
|
|
for (PropertiesMap::iterator it = this->Properties.begin();
|
|
|
|
it != this->Properties.end(); it ++ )
|
2008-07-03 17:31:33 +04:00
|
|
|
{
|
2009-08-28 19:08:39 +04:00
|
|
|
count++;
|
|
|
|
cmCTestTestHandler::cmCTestTestProperties& p = *it->second;
|
|
|
|
|
|
|
|
cmCTestRunTest testRun;
|
|
|
|
testRun.SetCTest(this->CTest);
|
|
|
|
testRun.SetTestHandler(this->TestHandler);
|
|
|
|
testRun.SetIndex(p.Index);
|
|
|
|
testRun.SetTestProperties(&p);
|
|
|
|
testRun.ComputeArguments(); //logs the command in verbose mode
|
|
|
|
|
2009-08-28 23:08:03 +04:00
|
|
|
cmCTestLog(this->CTest, HANDLER_OUTPUT, std::setw(3)
|
2009-08-28 19:08:39 +04:00
|
|
|
<< count << "/");
|
2009-08-28 23:08:03 +04:00
|
|
|
cmCTestLog(this->CTest, HANDLER_OUTPUT, std::setw(3)
|
2009-08-28 19:08:39 +04:00
|
|
|
<< this->Total << " ");
|
|
|
|
if (this->TestHandler->MemCheck)
|
|
|
|
{
|
|
|
|
cmCTestLog(this->CTest, HANDLER_OUTPUT, "Memory Check");
|
|
|
|
}
|
|
|
|
else
|
2008-07-03 17:31:33 +04:00
|
|
|
{
|
2009-08-28 19:08:39 +04:00
|
|
|
cmCTestLog(this->CTest, HANDLER_OUTPUT, "Testing");
|
2008-07-03 17:31:33 +04:00
|
|
|
}
|
2009-08-28 19:08:39 +04:00
|
|
|
cmCTestLog(this->CTest, HANDLER_OUTPUT, " ");
|
|
|
|
cmCTestLog(this->CTest, HANDLER_OUTPUT, p.Name.c_str() << std::endl);
|
2008-07-03 17:31:33 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-27 18:37:30 +04:00
|
|
|
//----------------------------------------------------------------
|
|
|
|
void cmCTestMultiProcessHandler::CheckResume()
|
|
|
|
{
|
|
|
|
std::string fname = this->CTest->GetBinaryDir()
|
|
|
|
+ "/Testing/Temporary/CTestCheckpoint.txt";
|
|
|
|
if(this->CTest->GetFailover())
|
|
|
|
{
|
|
|
|
if(cmSystemTools::FileExists(fname.c_str(), true))
|
|
|
|
{
|
|
|
|
*this->TestHandler->LogFile << "Resuming previously interrupted test set"
|
|
|
|
<< std::endl
|
|
|
|
<< "----------------------------------------------------------"
|
|
|
|
<< std::endl;
|
|
|
|
|
|
|
|
std::ifstream fin;
|
|
|
|
fin.open(fname.c_str());
|
|
|
|
std::string line;
|
|
|
|
while(std::getline(fin, line))
|
|
|
|
{
|
|
|
|
int index = atoi(line.c_str());
|
|
|
|
this->RemoveTest(index);
|
|
|
|
}
|
|
|
|
fin.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(cmSystemTools::FileExists(fname.c_str(), true))
|
|
|
|
{
|
|
|
|
cmSystemTools::RemoveFile(fname.c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmCTestMultiProcessHandler::RemoveTest(int index)
|
|
|
|
{
|
|
|
|
this->Tests.erase(index);
|
|
|
|
this->Properties.erase(index);
|
|
|
|
this->TestRunningMap[index] = false;
|
|
|
|
this->TestFinishMap[index] = true;
|
2009-08-28 19:08:39 +04:00
|
|
|
this->Completed++;
|
2009-08-27 18:37:30 +04:00
|
|
|
}
|
2009-09-02 18:08:40 +04:00
|
|
|
|
|
|
|
int cmCTestMultiProcessHandler::FindMaxIndex()
|
|
|
|
{
|
|
|
|
int max = 0;
|
|
|
|
cmCTestMultiProcessHandler::TestMap::iterator i = this->Tests.begin();
|
|
|
|
for(; i != this->Tests.end(); ++i)
|
|
|
|
{
|
|
|
|
if(i->first > max)
|
|
|
|
{
|
|
|
|
max = i->first;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return max;
|
|
|
|
}
|