2016-10-30 18:24:19 +01:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2008-10-12 18:41:06 +02:00
|
|
|
#include "cmCTestTestCommand.h"
|
|
|
|
|
|
|
|
#include "cmCTest.h"
|
|
|
|
#include "cmCTestGenericHandler.h"
|
2018-04-23 21:13:27 +02:00
|
|
|
#include "cmDuration.h"
|
2016-10-30 18:24:19 +01:00
|
|
|
#include "cmMakefile.h"
|
|
|
|
#include "cmSystemTools.h"
|
|
|
|
|
2018-04-23 21:13:27 +02:00
|
|
|
#include <chrono>
|
2016-10-30 18:24:19 +01:00
|
|
|
#include <sstream>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <vector>
|
2008-10-12 18:41:06 +02:00
|
|
|
|
|
|
|
cmCTestTestCommand::cmCTestTestCommand()
|
|
|
|
{
|
|
|
|
this->Arguments[ctt_START] = "START";
|
|
|
|
this->Arguments[ctt_END] = "END";
|
|
|
|
this->Arguments[ctt_STRIDE] = "STRIDE";
|
2009-02-07 16:14:30 +02:00
|
|
|
this->Arguments[ctt_EXCLUDE] = "EXCLUDE";
|
|
|
|
this->Arguments[ctt_INCLUDE] = "INCLUDE";
|
2009-10-04 10:30:41 +03:00
|
|
|
this->Arguments[ctt_EXCLUDE_LABEL] = "EXCLUDE_LABEL";
|
|
|
|
this->Arguments[ctt_INCLUDE_LABEL] = "INCLUDE_LABEL";
|
2017-07-20 19:35:53 +02:00
|
|
|
this->Arguments[ctt_EXCLUDE_FIXTURE] = "EXCLUDE_FIXTURE";
|
|
|
|
this->Arguments[ctt_EXCLUDE_FIXTURE_SETUP] = "EXCLUDE_FIXTURE_SETUP";
|
|
|
|
this->Arguments[ctt_EXCLUDE_FIXTURE_CLEANUP] = "EXCLUDE_FIXTURE_CLEANUP";
|
2009-10-04 10:30:41 +03:00
|
|
|
this->Arguments[ctt_PARALLEL_LEVEL] = "PARALLEL_LEVEL";
|
2010-03-17 14:00:29 +02:00
|
|
|
this->Arguments[ctt_SCHEDULE_RANDOM] = "SCHEDULE_RANDOM";
|
2010-06-23 01:18:35 +03:00
|
|
|
this->Arguments[ctt_STOP_TIME] = "STOP_TIME";
|
2015-11-17 17:22:37 +01:00
|
|
|
this->Arguments[ctt_TEST_LOAD] = "TEST_LOAD";
|
2018-01-26 17:06:56 +01:00
|
|
|
this->Arguments[ctt_LAST] = nullptr;
|
2008-10-12 18:41:06 +02:00
|
|
|
this->Last = ctt_LAST;
|
|
|
|
}
|
|
|
|
|
|
|
|
cmCTestGenericHandler* cmCTestTestCommand::InitializeHandler()
|
|
|
|
{
|
2013-03-16 19:13:01 +02:00
|
|
|
const char* ctestTimeout =
|
2008-10-12 18:41:06 +02:00
|
|
|
this->Makefile->GetDefinition("CTEST_TEST_TIMEOUT");
|
2010-03-17 14:00:29 +02:00
|
|
|
|
2018-04-23 21:13:27 +02:00
|
|
|
cmDuration timeout;
|
2016-07-09 11:21:54 +02:00
|
|
|
if (ctestTimeout) {
|
2018-04-23 21:13:27 +02:00
|
|
|
timeout = cmDuration(atof(ctestTimeout));
|
2016-07-09 11:21:54 +02:00
|
|
|
} else {
|
2017-07-20 19:35:53 +02:00
|
|
|
timeout = this->CTest->GetTimeOut();
|
2018-04-23 21:13:27 +02:00
|
|
|
if (timeout <= cmDuration::zero()) {
|
2008-10-12 18:41:06 +02:00
|
|
|
// By default use timeout of 10 minutes
|
2018-04-23 21:13:27 +02:00
|
|
|
timeout = std::chrono::minutes(10);
|
2008-10-12 18:41:06 +02:00
|
|
|
}
|
2016-07-09 11:21:54 +02:00
|
|
|
}
|
2008-10-12 18:41:06 +02:00
|
|
|
this->CTest->SetTimeOut(timeout);
|
|
|
|
cmCTestGenericHandler* handler = this->InitializeActualHandler();
|
2016-07-09 11:21:54 +02:00
|
|
|
if (this->Values[ctt_START] || this->Values[ctt_END] ||
|
|
|
|
this->Values[ctt_STRIDE]) {
|
2015-04-27 22:25:09 +02:00
|
|
|
std::ostringstream testsToRunString;
|
2016-07-09 11:21:54 +02:00
|
|
|
if (this->Values[ctt_START]) {
|
2008-10-12 18:41:06 +02:00
|
|
|
testsToRunString << this->Values[ctt_START];
|
2016-07-09 11:21:54 +02:00
|
|
|
}
|
2008-10-12 18:41:06 +02:00
|
|
|
testsToRunString << ",";
|
2016-07-09 11:21:54 +02:00
|
|
|
if (this->Values[ctt_END]) {
|
2008-10-12 18:41:06 +02:00
|
|
|
testsToRunString << this->Values[ctt_END];
|
2016-07-09 11:21:54 +02:00
|
|
|
}
|
2008-10-12 18:41:06 +02:00
|
|
|
testsToRunString << ",";
|
2016-07-09 11:21:54 +02:00
|
|
|
if (this->Values[ctt_STRIDE]) {
|
2008-10-12 18:41:06 +02:00
|
|
|
testsToRunString << this->Values[ctt_STRIDE];
|
|
|
|
}
|
2016-07-09 11:21:54 +02:00
|
|
|
handler->SetOption("TestsToRunInformation",
|
|
|
|
testsToRunString.str().c_str());
|
|
|
|
}
|
|
|
|
if (this->Values[ctt_EXCLUDE]) {
|
2009-02-07 16:14:30 +02:00
|
|
|
handler->SetOption("ExcludeRegularExpression", this->Values[ctt_EXCLUDE]);
|
2016-07-09 11:21:54 +02:00
|
|
|
}
|
|
|
|
if (this->Values[ctt_INCLUDE]) {
|
2009-02-07 16:14:30 +02:00
|
|
|
handler->SetOption("IncludeRegularExpression", this->Values[ctt_INCLUDE]);
|
2016-07-09 11:21:54 +02:00
|
|
|
}
|
|
|
|
if (this->Values[ctt_EXCLUDE_LABEL]) {
|
2009-10-04 10:30:41 +03:00
|
|
|
handler->SetOption("ExcludeLabelRegularExpression",
|
|
|
|
this->Values[ctt_EXCLUDE_LABEL]);
|
2016-07-09 11:21:54 +02:00
|
|
|
}
|
|
|
|
if (this->Values[ctt_INCLUDE_LABEL]) {
|
2013-03-16 19:13:01 +02:00
|
|
|
handler->SetOption("LabelRegularExpression",
|
2009-10-04 10:30:41 +03:00
|
|
|
this->Values[ctt_INCLUDE_LABEL]);
|
2016-07-09 11:21:54 +02:00
|
|
|
}
|
2017-07-20 19:35:53 +02:00
|
|
|
if (this->Values[ctt_EXCLUDE_FIXTURE]) {
|
|
|
|
handler->SetOption("ExcludeFixtureRegularExpression",
|
|
|
|
this->Values[ctt_EXCLUDE_FIXTURE]);
|
|
|
|
}
|
|
|
|
if (this->Values[ctt_EXCLUDE_FIXTURE_SETUP]) {
|
|
|
|
handler->SetOption("ExcludeFixtureSetupRegularExpression",
|
|
|
|
this->Values[ctt_EXCLUDE_FIXTURE_SETUP]);
|
|
|
|
}
|
|
|
|
if (this->Values[ctt_EXCLUDE_FIXTURE_CLEANUP]) {
|
|
|
|
handler->SetOption("ExcludeFixtureCleanupRegularExpression",
|
|
|
|
this->Values[ctt_EXCLUDE_FIXTURE_CLEANUP]);
|
|
|
|
}
|
2016-07-09 11:21:54 +02:00
|
|
|
if (this->Values[ctt_PARALLEL_LEVEL]) {
|
|
|
|
handler->SetOption("ParallelLevel", this->Values[ctt_PARALLEL_LEVEL]);
|
|
|
|
}
|
|
|
|
if (this->Values[ctt_SCHEDULE_RANDOM]) {
|
|
|
|
handler->SetOption("ScheduleRandom", this->Values[ctt_SCHEDULE_RANDOM]);
|
|
|
|
}
|
|
|
|
if (this->Values[ctt_STOP_TIME]) {
|
2010-06-23 01:18:35 +03:00
|
|
|
this->CTest->SetStopTime(this->Values[ctt_STOP_TIME]);
|
2016-07-09 11:21:54 +02:00
|
|
|
}
|
2015-11-17 17:22:37 +01: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;
|
2016-07-09 11:21:54 +02:00
|
|
|
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)) {
|
2015-11-17 17:22:37 +01:00
|
|
|
testLoad = 0;
|
2018-08-09 18:06:22 +02:00
|
|
|
cmCTestLog(this->CTest, WARNING,
|
|
|
|
"Invalid value for 'TEST_LOAD' : "
|
2016-07-09 11:21:54 +02:00
|
|
|
<< this->Values[ctt_TEST_LOAD] << std::endl);
|
2015-11-17 17:22:37 +01:00
|
|
|
}
|
2016-07-09 11:21:54 +02:00
|
|
|
} else if (ctestTestLoad && *ctestTestLoad) {
|
|
|
|
if (!cmSystemTools::StringToULong(ctestTestLoad, &testLoad)) {
|
2015-11-17 17:22:37 +01:00
|
|
|
testLoad = 0;
|
2018-08-09 18:06:22 +02:00
|
|
|
cmCTestLog(this->CTest, WARNING,
|
|
|
|
"Invalid value for 'CTEST_TEST_LOAD' : " << ctestTestLoad
|
|
|
|
<< std::endl);
|
2015-11-17 17:22:37 +01:00
|
|
|
}
|
2016-07-09 11:21:54 +02:00
|
|
|
} else {
|
2015-11-17 17:22:37 +01:00
|
|
|
testLoad = this->CTest->GetTestLoad();
|
2016-07-09 11:21:54 +02:00
|
|
|
}
|
2015-11-17 17:22:37 +01:00
|
|
|
handler->SetTestLoad(testLoad);
|
|
|
|
|
2018-01-26 17:06:56 +01:00
|
|
|
if (const char* labelsForSubprojects =
|
|
|
|
this->Makefile->GetDefinition("CTEST_LABELS_FOR_SUBPROJECTS")) {
|
|
|
|
this->CTest->SetCTestConfiguration("LabelsForSubprojects",
|
|
|
|
labelsForSubprojects, this->Quiet);
|
|
|
|
}
|
|
|
|
|
2015-08-17 11:37:30 +02:00
|
|
|
handler->SetQuiet(this->Quiet);
|
2008-10-12 18:41:06 +02:00
|
|
|
return handler;
|
|
|
|
}
|
|
|
|
|
|
|
|
cmCTestGenericHandler* cmCTestTestCommand::InitializeActualHandler()
|
|
|
|
{
|
|
|
|
return this->CTest->GetInitializedHandler("test");
|
|
|
|
}
|