2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2005-02-17 23:23:00 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2005-02-17 23:23:00 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
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.
|
|
|
|
============================================================================*/
|
2005-02-17 23:23:00 +03:00
|
|
|
#ifndef cmCTestUpdateCommand_h
|
|
|
|
#define cmCTestUpdateCommand_h
|
|
|
|
|
2006-03-29 21:01:24 +04:00
|
|
|
#include "cmCTestHandlerCommand.h"
|
2005-02-17 23:23:00 +03:00
|
|
|
|
|
|
|
/** \class cmCTestUpdate
|
|
|
|
* \brief Run a ctest script
|
|
|
|
*
|
|
|
|
* cmCTestUpdateCommand defineds the command to updates the repository.
|
|
|
|
*/
|
2006-03-29 21:01:24 +04:00
|
|
|
class cmCTestUpdateCommand : public cmCTestHandlerCommand
|
2005-02-17 23:23:00 +03:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
cmCTestUpdateCommand() {}
|
2006-03-09 19:17:10 +03:00
|
|
|
|
2005-02-17 23:23:00 +03:00
|
|
|
/**
|
|
|
|
* This is a virtual constructor for the command.
|
|
|
|
*/
|
2006-03-09 19:17:10 +03:00
|
|
|
virtual cmCommand* Clone()
|
2005-02-17 23:23:00 +03:00
|
|
|
{
|
|
|
|
cmCTestUpdateCommand* ni = new cmCTestUpdateCommand;
|
2006-03-10 23:03:09 +03:00
|
|
|
ni->CTest = this->CTest;
|
|
|
|
ni->CTestScriptHandler = this->CTestScriptHandler;
|
2005-02-17 23:23:00 +03:00
|
|
|
return ni;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the command as specified in CMakeList.txt.
|
|
|
|
*/
|
2014-02-25 05:19:17 +04:00
|
|
|
virtual std::string GetName() const { return "ctest_update";}
|
2005-02-17 23:23:00 +03:00
|
|
|
|
2006-03-29 21:01:24 +04:00
|
|
|
cmTypeMacro(cmCTestUpdateCommand, cmCTestHandlerCommand);
|
2005-02-17 23:23:00 +03:00
|
|
|
|
2006-03-29 21:01:24 +04:00
|
|
|
protected:
|
|
|
|
cmCTestGenericHandler* InitializeHandler();
|
2005-02-17 23:23:00 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|