970c82348b
Teach the ctest_update implementation to use the p4 command-line client to perform updates and extract the list of changes. Add a CTest.UpdateP4 test like those that exist already for the other version control tools. Make the test available when p4 and the p4d server are found. During the test launch p4d in the background to serve a repository from the test directory. Then direct the client toward this server for the duration of the test.
89 lines
3.6 KiB
C++
89 lines
3.6 KiB
C++
/*============================================================================
|
|
CMake - Cross Platform Makefile Generator
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
see accompanying file Copyright.txt for details.
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
See the License for more information.
|
|
============================================================================*/
|
|
#include "cmCTestUpdateCommand.h"
|
|
|
|
#include "cmCTest.h"
|
|
#include "cmCTestGenericHandler.h"
|
|
|
|
cmCTestGenericHandler* cmCTestUpdateCommand::InitializeHandler()
|
|
{
|
|
if ( this->Values[ct_SOURCE] )
|
|
{
|
|
this->CTest->SetCTestConfiguration("SourceDirectory",
|
|
cmSystemTools::CollapseFullPath(
|
|
this->Values[ct_SOURCE]).c_str());
|
|
}
|
|
else
|
|
{
|
|
this->CTest->SetCTestConfiguration("SourceDirectory",
|
|
cmSystemTools::CollapseFullPath(
|
|
this->Makefile->GetDefinition("CTEST_SOURCE_DIRECTORY")).c_str());
|
|
}
|
|
std::string source_dir
|
|
= this->CTest->GetCTestConfiguration("SourceDirectory");
|
|
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
|
"UpdateCommand", "CTEST_UPDATE_COMMAND");
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
|
"UpdateOptions", "CTEST_UPDATE_OPTIONS");
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
|
"CVSCommand", "CTEST_CVS_COMMAND");
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
|
"CVSUpdateOptions", "CTEST_CVS_UPDATE_OPTIONS");
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
|
"SVNCommand", "CTEST_SVN_COMMAND");
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
|
"SVNUpdateOptions", "CTEST_SVN_UPDATE_OPTIONS");
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
|
"SVNOptions", "CTEST_SVN_OPTIONS");
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
|
"BZRCommand", "CTEST_BZR_COMMAND");
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
|
"BZRUpdateOptions", "CTEST_BZR_UPDATE_OPTIONS");
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
|
"GITCommand", "CTEST_GIT_COMMAND");
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
|
"GITUpdateOptions", "CTEST_GIT_UPDATE_OPTIONS");
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
|
"GITUpdateCustom", "CTEST_GIT_UPDATE_CUSTOM");
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
|
"HGCommand", "CTEST_HG_COMMAND");
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
|
"HGUpdateOptions", "CTEST_HG_UPDATE_OPTIONS");
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
|
"P4Command", "CTEST_P4_COMMAND");
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
|
"P4UpdateOptions", "CTEST_P4_UPDATE_OPTIONS");
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
|
"P4Client", "CTEST_P4_CLIENT");
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
|
"P4Options", "CTEST_P4_OPTIONS");
|
|
|
|
cmCTestGenericHandler* handler
|
|
= this->CTest->GetInitializedHandler("update");
|
|
if ( !handler )
|
|
{
|
|
this->SetError("internal CTest error. Cannot instantiate update handler");
|
|
return 0;
|
|
}
|
|
handler->SetCommand(this);
|
|
if ( source_dir.empty() )
|
|
{
|
|
this->SetError("source directory not specified. Please use SOURCE tag");
|
|
return 0;
|
|
}
|
|
handler->SetOption("SourceDirectory", source_dir.c_str());
|
|
return handler;
|
|
}
|
|
|
|
|