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.
|
|
|
|
*/
|
2008-05-12 17:11:51 +04:00
|
|
|
virtual const char* GetName() { return "ctest_start";}
|
2005-02-17 18:51:52 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Succinct documentation.
|
|
|
|
*/
|
2006-03-09 19:17:10 +03:00
|
|
|
virtual const char* GetTerseDocumentation()
|
2005-02-17 18:51:52 +03:00
|
|
|
{
|
|
|
|
return "Starts the testing for a given model";
|
|
|
|
}
|
2006-03-09 19:17:10 +03:00
|
|
|
|
2005-02-17 18:51:52 +03:00
|
|
|
/**
|
|
|
|
* More documentation.
|
|
|
|
*/
|
|
|
|
virtual const char* GetFullDocumentation()
|
|
|
|
{
|
|
|
|
return
|
2009-12-29 22:38:31 +03:00
|
|
|
" ctest_start(Model [TRACK <track>] [APPEND] [source [binary]])\n"
|
2006-03-09 19:17:10 +03:00
|
|
|
"Starts the testing for a given model. The command should be called "
|
|
|
|
"after the binary directory is initialized. If the 'source' and "
|
|
|
|
"'binary' directory are not specified, it reads the "
|
2006-04-28 19:59:31 +04:00
|
|
|
"CTEST_SOURCE_DIRECTORY and CTEST_BINARY_DIRECTORY. If the track is "
|
2009-12-29 22:38:31 +03:00
|
|
|
"specified, the submissions will go to the specified track. "
|
|
|
|
"If APPEND is used, the existing TAG is used rather than "
|
|
|
|
"creating a new one based on the current time stamp.";
|
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
|