2016-09-27 22:01:08 +03:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2005-02-17 23:23:00 +03:00
|
|
|
#ifndef cmCTestUpdateCommand_h
|
|
|
|
#define cmCTestUpdateCommand_h
|
|
|
|
|
2016-08-24 23:01:40 +03:00
|
|
|
#include <cmConfigure.h>
|
|
|
|
|
2006-03-29 21:01:24 +04:00
|
|
|
#include "cmCTestHandlerCommand.h"
|
2016-08-24 23:01:40 +03:00
|
|
|
#include "cmTypeMacro.h"
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
class cmCTestGenericHandler;
|
|
|
|
class cmCommand;
|
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.
|
|
|
|
*/
|
2016-06-27 22:25:27 +03:00
|
|
|
cmCommand* Clone() CM_OVERRIDE
|
2016-05-16 17:34:04 +03:00
|
|
|
{
|
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;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2005-02-17 23:23:00 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the command as specified in CMakeList.txt.
|
|
|
|
*/
|
2016-06-27 22:25:27 +03:00
|
|
|
std::string GetName() const CM_OVERRIDE { 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:
|
2016-06-27 22:25:27 +03:00
|
|
|
cmCTestGenericHandler* InitializeHandler() CM_OVERRIDE;
|
2005-02-17 23:23:00 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|