mirror of
https://github.com/reactos/CMake.git
synced 2024-12-13 06:16:49 +00:00
133 lines
4.6 KiB
C++
133 lines
4.6 KiB
C++
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
|
#include "cmCTestTestCommand.h"
|
|
|
|
#include "cmCTest.h"
|
|
#include "cmCTestGenericHandler.h"
|
|
#include "cmCTestTestHandler.h"
|
|
#include "cmDuration.h"
|
|
#include "cmMakefile.h"
|
|
#include "cmStringAlgorithms.h"
|
|
#include "cm_static_string_view.hxx"
|
|
|
|
#include <chrono>
|
|
#include <cstdlib>
|
|
#include <sstream>
|
|
|
|
void cmCTestTestCommand::BindArguments()
|
|
{
|
|
this->cmCTestHandlerCommand::BindArguments();
|
|
this->Bind("START"_s, this->Start);
|
|
this->Bind("END"_s, this->End);
|
|
this->Bind("STRIDE"_s, this->Stride);
|
|
this->Bind("EXCLUDE"_s, this->Exclude);
|
|
this->Bind("INCLUDE"_s, this->Include);
|
|
this->Bind("EXCLUDE_LABEL"_s, this->ExcludeLabel);
|
|
this->Bind("INCLUDE_LABEL"_s, this->IncludeLabel);
|
|
this->Bind("EXCLUDE_FIXTURE"_s, this->ExcludeFixture);
|
|
this->Bind("EXCLUDE_FIXTURE_SETUP"_s, this->ExcludeFixtureSetup);
|
|
this->Bind("EXCLUDE_FIXTURE_CLEANUP"_s, this->ExcludeFixtureCleanup);
|
|
this->Bind("PARALLEL_LEVEL"_s, this->ParallelLevel);
|
|
this->Bind("SCHEDULE_RANDOM"_s, this->ScheduleRandom);
|
|
this->Bind("STOP_TIME"_s, this->StopTime);
|
|
this->Bind("TEST_LOAD"_s, this->TestLoad);
|
|
}
|
|
|
|
cmCTestGenericHandler* cmCTestTestCommand::InitializeHandler()
|
|
{
|
|
const char* ctestTimeout =
|
|
this->Makefile->GetDefinition("CTEST_TEST_TIMEOUT");
|
|
|
|
cmDuration timeout;
|
|
if (ctestTimeout) {
|
|
timeout = cmDuration(atof(ctestTimeout));
|
|
} else {
|
|
timeout = this->CTest->GetTimeOut();
|
|
if (timeout <= cmDuration::zero()) {
|
|
// By default use timeout of 10 minutes
|
|
timeout = std::chrono::minutes(10);
|
|
}
|
|
}
|
|
this->CTest->SetTimeOut(timeout);
|
|
cmCTestGenericHandler* handler = this->InitializeActualHandler();
|
|
if (!this->Start.empty() || !this->End.empty() || !this->Stride.empty()) {
|
|
handler->SetOption(
|
|
"TestsToRunInformation",
|
|
cmStrCat(this->Start, ',', this->End, ',', this->Stride).c_str());
|
|
}
|
|
if (!this->Exclude.empty()) {
|
|
handler->SetOption("ExcludeRegularExpression", this->Exclude.c_str());
|
|
}
|
|
if (!this->Include.empty()) {
|
|
handler->SetOption("IncludeRegularExpression", this->Include.c_str());
|
|
}
|
|
if (!this->ExcludeLabel.empty()) {
|
|
handler->SetOption("ExcludeLabelRegularExpression",
|
|
this->ExcludeLabel.c_str());
|
|
}
|
|
if (!this->IncludeLabel.empty()) {
|
|
handler->SetOption("LabelRegularExpression", this->IncludeLabel.c_str());
|
|
}
|
|
if (!this->ExcludeFixture.empty()) {
|
|
handler->SetOption("ExcludeFixtureRegularExpression",
|
|
this->ExcludeFixture.c_str());
|
|
}
|
|
if (!this->ExcludeFixtureSetup.empty()) {
|
|
handler->SetOption("ExcludeFixtureSetupRegularExpression",
|
|
this->ExcludeFixtureSetup.c_str());
|
|
}
|
|
if (!this->ExcludeFixtureCleanup.empty()) {
|
|
handler->SetOption("ExcludeFixtureCleanupRegularExpression",
|
|
this->ExcludeFixtureCleanup.c_str());
|
|
}
|
|
if (!this->ParallelLevel.empty()) {
|
|
handler->SetOption("ParallelLevel", this->ParallelLevel.c_str());
|
|
}
|
|
if (!this->ScheduleRandom.empty()) {
|
|
handler->SetOption("ScheduleRandom", this->ScheduleRandom.c_str());
|
|
}
|
|
if (!this->StopTime.empty()) {
|
|
this->CTest->SetStopTime(this->StopTime);
|
|
}
|
|
|
|
// 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->TestLoad.empty()) {
|
|
if (!cmStrToULong(this->TestLoad.c_str(), &testLoad)) {
|
|
testLoad = 0;
|
|
cmCTestLog(this->CTest, WARNING,
|
|
"Invalid value for 'TEST_LOAD' : " << this->TestLoad
|
|
<< std::endl);
|
|
}
|
|
} else if (ctestTestLoad && *ctestTestLoad) {
|
|
if (!cmStrToULong(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);
|
|
|
|
if (const char* labelsForSubprojects =
|
|
this->Makefile->GetDefinition("CTEST_LABELS_FOR_SUBPROJECTS")) {
|
|
this->CTest->SetCTestConfiguration("LabelsForSubprojects",
|
|
labelsForSubprojects, this->Quiet);
|
|
}
|
|
|
|
handler->SetQuiet(this->Quiet);
|
|
return handler;
|
|
}
|
|
|
|
cmCTestGenericHandler* cmCTestTestCommand::InitializeActualHandler()
|
|
{
|
|
cmCTestTestHandler* handler = this->CTest->GetTestHandler();
|
|
handler->Initialize();
|
|
return handler;
|
|
}
|