| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
- file LICENSE.rst or https://cmake.org/licensing for details. */
- #include "cmCTestTestCommand.h"
- #include <chrono>
- #include <cstdlib>
- #include <ratio>
- #include <sstream>
- #include <utility>
- #include <vector>
- #include <cm/memory>
- #include "cmCTest.h"
- #include "cmCTestGenericHandler.h"
- #include "cmCTestTestHandler.h"
- #include "cmDuration.h"
- #include "cmExecutionStatus.h"
- #include "cmMakefile.h"
- #include "cmStringAlgorithms.h"
- #include "cmValue.h"
- std::unique_ptr<cmCTestGenericHandler> cmCTestTestCommand::InitializeHandler(
- HandlerArguments& arguments, cmExecutionStatus& status) const
- {
- cmMakefile& mf = status.GetMakefile();
- auto& args = static_cast<TestArguments&>(arguments);
- cmValue ctestTimeout = mf.GetDefinition("CTEST_TEST_TIMEOUT");
- cmDuration timeout;
- if (ctestTimeout) {
- timeout = cmDuration(atof(ctestTimeout->c_str()));
- } 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);
- cmValue resourceSpecFile = mf.GetDefinition("CTEST_RESOURCE_SPEC_FILE");
- if (args.ResourceSpecFile.empty() && resourceSpecFile) {
- args.ResourceSpecFile = *resourceSpecFile;
- }
- auto handler = this->InitializeActualHandler(args, status);
- if (!args.Start.empty() || !args.End.empty() || !args.Stride.empty()) {
- handler->TestOptions.TestsToRunInformation =
- cmStrCat(args.Start, ',', args.End, ',', args.Stride);
- }
- if (!args.Exclude.empty()) {
- handler->TestOptions.ExcludeRegularExpression = args.Exclude;
- }
- if (!args.Include.empty()) {
- handler->TestOptions.IncludeRegularExpression = args.Include;
- }
- if (!args.ExcludeLabel.empty()) {
- handler->TestOptions.ExcludeLabelRegularExpression.push_back(
- args.ExcludeLabel);
- }
- if (!args.IncludeLabel.empty()) {
- handler->TestOptions.LabelRegularExpression.push_back(args.IncludeLabel);
- }
- if (!args.ExcludeTestsFromFile.empty()) {
- handler->TestOptions.ExcludeTestListFile = args.ExcludeTestsFromFile;
- }
- if (!args.IncludeTestsFromFile.empty()) {
- handler->TestOptions.TestListFile = args.IncludeTestsFromFile;
- }
- if (!args.ExcludeFixture.empty()) {
- handler->TestOptions.ExcludeFixtureRegularExpression = args.ExcludeFixture;
- }
- if (!args.ExcludeFixtureSetup.empty()) {
- handler->TestOptions.ExcludeFixtureSetupRegularExpression =
- args.ExcludeFixtureSetup;
- }
- if (!args.ExcludeFixtureCleanup.empty()) {
- handler->TestOptions.ExcludeFixtureCleanupRegularExpression =
- args.ExcludeFixtureCleanup;
- }
- if (args.StopOnFailure) {
- handler->TestOptions.StopOnFailure = true;
- }
- if (args.ParallelLevel) {
- handler->ParallelLevel = *args.ParallelLevel;
- }
- if (!args.Repeat.empty()) {
- handler->Repeat = args.Repeat;
- }
- if (!args.ScheduleRandom.empty()) {
- handler->TestOptions.ScheduleRandom = cmValue(args.ScheduleRandom).IsOn();
- }
- if (!args.ResourceSpecFile.empty()) {
- handler->TestOptions.ResourceSpecFile = args.ResourceSpecFile;
- }
- if (!args.StopTime.empty()) {
- this->CTest->SetStopTime(args.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;
- cmValue ctestTestLoad = mf.GetDefinition("CTEST_TEST_LOAD");
- if (!args.TestLoad.empty()) {
- if (!cmStrToULong(args.TestLoad, &testLoad)) {
- testLoad = 0;
- cmCTestLog(this->CTest, WARNING,
- "Invalid value for 'TEST_LOAD' : " << args.TestLoad
- << std::endl);
- }
- } else if (cmNonempty(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 (cmValue labelsForSubprojects =
- mf.GetDefinition("CTEST_LABELS_FOR_SUBPROJECTS")) {
- this->CTest->SetCTestConfiguration("LabelsForSubprojects",
- *labelsForSubprojects, args.Quiet);
- }
- if (!args.OutputJUnit.empty()) {
- handler->SetJUnitXMLFileName(args.OutputJUnit);
- }
- handler->SetQuiet(args.Quiet);
- return std::unique_ptr<cmCTestGenericHandler>(std::move(handler));
- }
- std::unique_ptr<cmCTestTestHandler>
- cmCTestTestCommand::InitializeActualHandler(HandlerArguments&,
- cmExecutionStatus&) const
- {
- return cm::make_unique<cmCTestTestHandler>(this->CTest);
- }
- bool cmCTestTestCommand::InitialPass(std::vector<std::string> const& args,
- cmExecutionStatus& status) const
- {
- static auto const parser = MakeTestParser<TestArguments>();
- return this->Invoke(parser, args, status, [&](TestArguments& a) {
- return this->ExecuteHandlerCommand(a, status);
- });
- }
|