| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- /* 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 <chrono>
- #include <cstdlib>
- #include <sstream>
- #include <cmext/string_view>
- #include "cmCTest.h"
- #include "cmCTestGenericHandler.h"
- #include "cmCTestTestHandler.h"
- #include "cmDuration.h"
- #include "cmMakefile.h"
- #include "cmProperty.h"
- #include "cmStringAlgorithms.h"
- 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("REPEAT"_s, this->Repeat);
- this->Bind("SCHEDULE_RANDOM"_s, this->ScheduleRandom);
- this->Bind("STOP_TIME"_s, this->StopTime);
- this->Bind("TEST_LOAD"_s, this->TestLoad);
- this->Bind("RESOURCE_SPEC_FILE"_s, this->ResourceSpecFile);
- this->Bind("STOP_ON_FAILURE"_s, this->StopOnFailure);
- }
- 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);
- const char* resourceSpecFile =
- this->Makefile->GetDefinition("CTEST_RESOURCE_SPEC_FILE");
- if (this->ResourceSpecFile.empty() && resourceSpecFile) {
- this->ResourceSpecFile = resourceSpecFile;
- }
- 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->StopOnFailure) {
- handler->SetOption("StopOnFailure", "ON");
- }
- if (!this->ParallelLevel.empty()) {
- handler->SetOption("ParallelLevel", this->ParallelLevel.c_str());
- }
- if (!this->Repeat.empty()) {
- handler->SetOption("Repeat", this->Repeat.c_str());
- }
- if (!this->ScheduleRandom.empty()) {
- handler->SetOption("ScheduleRandom", this->ScheduleRandom.c_str());
- }
- if (!this->ResourceSpecFile.empty()) {
- handler->SetOption("ResourceSpecFile", this->ResourceSpecFile.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 (cmProp labelsForSubprojects =
- this->Makefile->GetDef("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;
- }
|