cmake/Source/CTest/cmCTestUpdateCommand.cxx

88 lines
3.9 KiB
C++
Raw Normal View History

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. */
#include "cmCTestUpdateCommand.h"
#include "cmCTest.h"
2019-11-11 23:01:05 +01:00
#include "cmCTestUpdateHandler.h"
2016-10-30 18:24:19 +01:00
#include "cmMakefile.h"
#include "cmSystemTools.h"
cmCTestGenericHandler* cmCTestUpdateCommand::InitializeHandler()
{
2020-02-01 23:06:01 +01:00
if (!this->Source.empty()) {
2016-07-09 11:21:54 +02:00
this->CTest->SetCTestConfiguration(
2020-02-01 23:06:01 +01:00
"SourceDirectory", cmSystemTools::CollapseFullPath(this->Source).c_str(),
2016-07-09 11:21:54 +02:00
this->Quiet);
} else {
this->CTest->SetCTestConfiguration(
"SourceDirectory",
cmSystemTools::CollapseFullPath(
2016-07-09 11:21:54 +02:00
this->Makefile->GetDefinition("CTEST_SOURCE_DIRECTORY"))
.c_str(),
2015-08-17 11:37:30 +02:00
this->Quiet);
2016-07-09 11:21:54 +02:00
}
std::string source_dir =
this->CTest->GetCTestConfiguration("SourceDirectory");
2016-07-09 11:21:54 +02:00
this->CTest->SetCTestConfigurationFromCMakeVariable(
this->Makefile, "UpdateCommand", "CTEST_UPDATE_COMMAND", this->Quiet);
this->CTest->SetCTestConfigurationFromCMakeVariable(
this->Makefile, "UpdateOptions", "CTEST_UPDATE_OPTIONS", this->Quiet);
this->CTest->SetCTestConfigurationFromCMakeVariable(
this->Makefile, "CVSCommand", "CTEST_CVS_COMMAND", this->Quiet);
this->CTest->SetCTestConfigurationFromCMakeVariable(
this->Makefile, "CVSUpdateOptions", "CTEST_CVS_UPDATE_OPTIONS",
this->Quiet);
this->CTest->SetCTestConfigurationFromCMakeVariable(
this->Makefile, "SVNCommand", "CTEST_SVN_COMMAND", this->Quiet);
this->CTest->SetCTestConfigurationFromCMakeVariable(
this->Makefile, "SVNUpdateOptions", "CTEST_SVN_UPDATE_OPTIONS",
this->Quiet);
this->CTest->SetCTestConfigurationFromCMakeVariable(
this->Makefile, "SVNOptions", "CTEST_SVN_OPTIONS", this->Quiet);
this->CTest->SetCTestConfigurationFromCMakeVariable(
this->Makefile, "BZRCommand", "CTEST_BZR_COMMAND", this->Quiet);
this->CTest->SetCTestConfigurationFromCMakeVariable(
this->Makefile, "BZRUpdateOptions", "CTEST_BZR_UPDATE_OPTIONS",
this->Quiet);
this->CTest->SetCTestConfigurationFromCMakeVariable(
this->Makefile, "GITCommand", "CTEST_GIT_COMMAND", this->Quiet);
this->CTest->SetCTestConfigurationFromCMakeVariable(
this->Makefile, "GITUpdateOptions", "CTEST_GIT_UPDATE_OPTIONS",
this->Quiet);
this->CTest->SetCTestConfigurationFromCMakeVariable(
this->Makefile, "GITInitSubmodules", "CTEST_GIT_INIT_SUBMODULES",
this->Quiet);
this->CTest->SetCTestConfigurationFromCMakeVariable(
this->Makefile, "GITUpdateCustom", "CTEST_GIT_UPDATE_CUSTOM", this->Quiet);
this->CTest->SetCTestConfigurationFromCMakeVariable(
this->Makefile, "UpdateVersionOnly", "CTEST_UPDATE_VERSION_ONLY",
this->Quiet);
2019-11-11 23:01:05 +01:00
this->CTest->SetCTestConfigurationFromCMakeVariable(
this->Makefile, "UpdateVersionOverride", "CTEST_UPDATE_VERSION_OVERRIDE",
this->Quiet);
2016-07-09 11:21:54 +02:00
this->CTest->SetCTestConfigurationFromCMakeVariable(
this->Makefile, "HGCommand", "CTEST_HG_COMMAND", this->Quiet);
this->CTest->SetCTestConfigurationFromCMakeVariable(
this->Makefile, "HGUpdateOptions", "CTEST_HG_UPDATE_OPTIONS", this->Quiet);
this->CTest->SetCTestConfigurationFromCMakeVariable(
this->Makefile, "P4Command", "CTEST_P4_COMMAND", this->Quiet);
this->CTest->SetCTestConfigurationFromCMakeVariable(
this->Makefile, "P4UpdateOptions", "CTEST_P4_UPDATE_OPTIONS", this->Quiet);
this->CTest->SetCTestConfigurationFromCMakeVariable(
this->Makefile, "P4Client", "CTEST_P4_CLIENT", this->Quiet);
this->CTest->SetCTestConfigurationFromCMakeVariable(
this->Makefile, "P4Options", "CTEST_P4_OPTIONS", this->Quiet);
2019-11-11 23:01:05 +01:00
cmCTestUpdateHandler* handler = this->CTest->GetUpdateHandler();
handler->Initialize();
handler->SetCommand(this);
2016-07-09 11:21:54 +02:00
if (source_dir.empty()) {
this->SetError("source directory not specified. Please use SOURCE tag");
2018-01-26 17:06:56 +01:00
return nullptr;
2016-07-09 11:21:54 +02:00
}
handler->SetOption("SourceDirectory", source_dir.c_str());
2015-08-17 11:37:30 +02:00
handler->SetQuiet(this->Quiet);
return handler;
}