2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2005-02-17 18:51:52 +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 18:51:52 +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 18:51:52 +03:00
|
|
|
#ifndef cmCTestStartCommand_h
|
|
|
|
#define cmCTestStartCommand_h
|
|
|
|
|
|
|
|
#include "cmCTestCommand.h"
|
|
|
|
|
|
|
|
/** \class cmCTestStart
|
|
|
|
* \brief Run a ctest script
|
|
|
|
*
|
|
|
|
* cmCTestStartCommand defineds the command to start the nightly testing.
|
|
|
|
*/
|
|
|
|
class cmCTestStartCommand : public cmCTestCommand
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2009-12-29 22:38:31 +03:00
|
|
|
cmCTestStartCommand();
|
2006-03-09 19:17:10 +03:00
|
|
|
|
2005-02-17 18:51:52 +03:00
|
|
|
/**
|
|
|
|
* This is a virtual constructor for the command.
|
|
|
|
*/
|
2006-03-09 19:17:10 +03:00
|
|
|
virtual cmCommand* Clone()
|
2005-02-17 18:51:52 +03:00
|
|
|
{
|
|
|
|
cmCTestStartCommand* ni = new cmCTestStartCommand;
|
2006-03-10 23:03:09 +03:00
|
|
|
ni->CTest = this->CTest;
|
|
|
|
ni->CTestScriptHandler = this->CTestScriptHandler;
|
2009-12-29 22:38:31 +03:00
|
|
|
ni->CreateNewTag = this->CreateNewTag;
|
2005-02-17 18:51:52 +03:00
|
|
|
return ni;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is called when the command is first encountered in
|
|
|
|
* the CMakeLists.txt file.
|
|
|
|
*/
|
2008-01-23 18:28:26 +03:00
|
|
|
virtual bool InitialPass(std::vector<std::string> const& args,
|
|
|
|
cmExecutionStatus &status);
|
2005-02-17 18:51:52 +03:00
|
|
|
|
2009-12-29 22:38:31 +03:00
|
|
|
/**
|
|
|
|
* Will this invocation of ctest_start create a new TAG file?
|
|
|
|
*/
|
|
|
|
bool ShouldCreateNewTag()
|
|
|
|
{
|
|
|
|
return this->CreateNewTag;
|
|
|
|
}
|
|
|
|
|
2005-02-17 18:51:52 +03:00
|
|
|
/**
|
|
|
|
* 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_start";}
|
2005-02-17 18:51:52 +03:00
|
|
|
|
|
|
|
cmTypeMacro(cmCTestStartCommand, cmCTestCommand);
|
|
|
|
|
2009-11-24 16:58:59 +03:00
|
|
|
private:
|
|
|
|
bool InitialCheckout(std::ostream& ofs, std::string const& sourceDir);
|
2009-12-29 22:38:31 +03:00
|
|
|
bool CreateNewTag;
|
2005-02-17 18:51:52 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|