2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2005-05-03 16:17:39 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2005-05-03 16:17:39 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2005-05-03 16:17:39 +04:00
|
|
|
#include "cmCTestTestCommand.h"
|
|
|
|
|
|
|
|
#include "cmCTest.h"
|
|
|
|
#include "cmCTestGenericHandler.h"
|
|
|
|
|
2005-06-23 21:04:18 +04:00
|
|
|
cmCTestTestCommand::cmCTestTestCommand()
|
2005-05-03 16:17:39 +04:00
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
this->Arguments[ctt_START] = "START";
|
|
|
|
this->Arguments[ctt_END] = "END";
|
|
|
|
this->Arguments[ctt_STRIDE] = "STRIDE";
|
2008-09-09 19:44:16 +04:00
|
|
|
this->Arguments[ctt_EXCLUDE] = "EXCLUDE";
|
|
|
|
this->Arguments[ctt_INCLUDE] = "INCLUDE";
|
2009-02-10 22:24:24 +03:00
|
|
|
this->Arguments[ctt_EXCLUDE_LABEL] = "EXCLUDE_LABEL";
|
|
|
|
this->Arguments[ctt_INCLUDE_LABEL] = "INCLUDE_LABEL";
|
2009-09-02 20:35:42 +04:00
|
|
|
this->Arguments[ctt_PARALLEL_LEVEL] = "PARALLEL_LEVEL";
|
2009-10-29 22:30:12 +03:00
|
|
|
this->Arguments[ctt_SCHEDULE_RANDOM] = "SCHEDULE_RANDOM";
|
2010-03-16 22:33:55 +03:00
|
|
|
this->Arguments[ctt_STOP_TIME] = "STOP_TIME";
|
2015-06-09 15:50:44 +03:00
|
|
|
this->Arguments[ctt_TEST_LOAD] = "TEST_LOAD";
|
2006-03-10 23:03:09 +03:00
|
|
|
this->Arguments[ctt_LAST] = 0;
|
|
|
|
this->Last = ctt_LAST;
|
2005-06-23 21:04:18 +04:00
|
|
|
}
|
2005-05-04 19:13:35 +04:00
|
|
|
|
2005-06-23 21:04:18 +04:00
|
|
|
cmCTestGenericHandler* cmCTestTestCommand::InitializeHandler()
|
|
|
|
{
|
2012-08-13 21:42:58 +04:00
|
|
|
const char* ctestTimeout =
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->GetDefinition("CTEST_TEST_TIMEOUT");
|
2009-12-04 20:09:01 +03:00
|
|
|
|
2006-03-10 23:03:09 +03:00
|
|
|
double timeout = this->CTest->GetTimeOut();
|
2005-07-13 18:17:18 +04:00
|
|
|
if ( ctestTimeout )
|
|
|
|
{
|
|
|
|
timeout = atof(ctestTimeout);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2005-07-14 17:29:54 +04:00
|
|
|
if ( timeout <= 0 )
|
|
|
|
{
|
|
|
|
// By default use timeout of 10 minutes
|
|
|
|
timeout = 600;
|
|
|
|
}
|
2005-07-13 18:17:18 +04:00
|
|
|
}
|
2006-03-10 23:03:09 +03:00
|
|
|
this->CTest->SetTimeOut(timeout);
|
2005-09-17 19:31:22 +04:00
|
|
|
cmCTestGenericHandler* handler = this->InitializeActualHandler();
|
2006-03-10 23:03:09 +03:00
|
|
|
if ( this->Values[ctt_START] || this->Values[ctt_END] ||
|
|
|
|
this->Values[ctt_STRIDE] )
|
2005-05-03 16:17:39 +04:00
|
|
|
{
|
2015-01-05 22:31:31 +03:00
|
|
|
std::ostringstream testsToRunString;
|
2006-03-10 23:03:09 +03:00
|
|
|
if ( this->Values[ctt_START] )
|
2005-05-04 19:13:35 +04:00
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
testsToRunString << this->Values[ctt_START];
|
2005-05-04 19:13:35 +04:00
|
|
|
}
|
2005-06-23 21:04:18 +04:00
|
|
|
testsToRunString << ",";
|
2006-03-10 23:03:09 +03:00
|
|
|
if ( this->Values[ctt_END] )
|
2005-05-04 19:13:35 +04:00
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
testsToRunString << this->Values[ctt_END];
|
2005-05-04 19:13:35 +04:00
|
|
|
}
|
2005-06-23 21:04:18 +04:00
|
|
|
testsToRunString << ",";
|
2006-03-10 23:03:09 +03:00
|
|
|
if ( this->Values[ctt_STRIDE] )
|
2005-05-04 19:13:35 +04:00
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
testsToRunString << this->Values[ctt_STRIDE];
|
2005-05-04 19:13:35 +04:00
|
|
|
}
|
2006-03-09 19:17:10 +03:00
|
|
|
handler->SetOption("TestsToRunInformation",
|
|
|
|
testsToRunString.str().c_str());
|
2005-05-03 16:17:39 +04:00
|
|
|
}
|
2008-09-09 19:44:16 +04:00
|
|
|
if(this->Values[ctt_EXCLUDE])
|
|
|
|
{
|
|
|
|
handler->SetOption("ExcludeRegularExpression", this->Values[ctt_EXCLUDE]);
|
|
|
|
}
|
|
|
|
if(this->Values[ctt_INCLUDE])
|
|
|
|
{
|
|
|
|
handler->SetOption("IncludeRegularExpression", this->Values[ctt_INCLUDE]);
|
|
|
|
}
|
2009-02-10 22:24:24 +03:00
|
|
|
if(this->Values[ctt_EXCLUDE_LABEL])
|
|
|
|
{
|
|
|
|
handler->SetOption("ExcludeLabelRegularExpression",
|
|
|
|
this->Values[ctt_EXCLUDE_LABEL]);
|
|
|
|
}
|
|
|
|
if(this->Values[ctt_INCLUDE_LABEL])
|
|
|
|
{
|
2012-08-13 21:42:58 +04:00
|
|
|
handler->SetOption("LabelRegularExpression",
|
2009-02-10 22:24:24 +03:00
|
|
|
this->Values[ctt_INCLUDE_LABEL]);
|
|
|
|
}
|
2009-09-02 20:35:42 +04:00
|
|
|
if(this->Values[ctt_PARALLEL_LEVEL])
|
|
|
|
{
|
|
|
|
handler->SetOption("ParallelLevel",
|
|
|
|
this->Values[ctt_PARALLEL_LEVEL]);
|
|
|
|
}
|
2009-10-29 22:30:12 +03:00
|
|
|
if(this->Values[ctt_SCHEDULE_RANDOM])
|
|
|
|
{
|
|
|
|
handler->SetOption("ScheduleRandom",
|
|
|
|
this->Values[ctt_SCHEDULE_RANDOM]);
|
|
|
|
}
|
2010-03-16 22:33:55 +03:00
|
|
|
if(this->Values[ctt_STOP_TIME])
|
|
|
|
{
|
|
|
|
this->CTest->SetStopTime(this->Values[ctt_STOP_TIME]);
|
|
|
|
}
|
2015-06-09 15:50:44 +03:00
|
|
|
|
|
|
|
// Test load is determined by: TEST_LOAD argument,
|
|
|
|
// or CTEST_TEST_LOAD script variable, or ctest --test-load
|
|
|
|
// command line argument... in that order.
|
|
|
|
unsigned long testLoad;
|
|
|
|
const char* ctestTestLoad
|
|
|
|
= this->Makefile->GetDefinition("CTEST_TEST_LOAD");
|
|
|
|
if(this->Values[ctt_TEST_LOAD] && *this->Values[ctt_TEST_LOAD])
|
|
|
|
{
|
|
|
|
if (!cmSystemTools::StringToULong(this->Values[ctt_TEST_LOAD], &testLoad))
|
|
|
|
{
|
|
|
|
testLoad = 0;
|
|
|
|
cmCTestLog(this->CTest, WARNING, "Invalid value for 'TEST_LOAD' : "
|
|
|
|
<< this->Values[ctt_TEST_LOAD] << std::endl);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(ctestTestLoad && *ctestTestLoad)
|
|
|
|
{
|
|
|
|
if (!cmSystemTools::StringToULong(ctestTestLoad, &testLoad))
|
|
|
|
{
|
|
|
|
testLoad = 0;
|
|
|
|
cmCTestLog(this->CTest, WARNING,
|
|
|
|
"Invalid value for 'CTEST_TEST_LOAD' : " <<
|
|
|
|
ctestTestLoad << std::endl);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
testLoad = this->CTest->GetTestLoad();
|
|
|
|
}
|
|
|
|
handler->SetTestLoad(testLoad);
|
|
|
|
|
2015-02-17 22:23:56 +03:00
|
|
|
handler->SetQuiet(this->Quiet);
|
2005-06-23 21:04:18 +04:00
|
|
|
return handler;
|
2005-05-03 16:17:39 +04:00
|
|
|
}
|
|
|
|
|
2005-06-23 21:04:18 +04:00
|
|
|
cmCTestGenericHandler* cmCTestTestCommand::InitializeActualHandler()
|
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
return this->CTest->GetInitializedHandler("test");
|
2005-06-23 21:04:18 +04:00
|
|
|
}
|