2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2005-05-03 16:17:39 +04: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-05-03 16:17:39 +04: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-05-03 16:17:39 +04:00
|
|
|
#ifndef cmCTestTestCommand_h
|
|
|
|
#define cmCTestTestCommand_h
|
|
|
|
|
2005-06-23 21:04:18 +04:00
|
|
|
#include "cmCTestHandlerCommand.h"
|
|
|
|
|
2005-05-03 16:17:39 +04:00
|
|
|
/** \class cmCTestTest
|
|
|
|
* \brief Run a ctest script
|
|
|
|
*
|
|
|
|
* cmCTestTestCommand defineds the command to test the project.
|
|
|
|
*/
|
2005-06-23 21:04:18 +04:00
|
|
|
class cmCTestTestCommand : public cmCTestHandlerCommand
|
2005-05-03 16:17:39 +04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2005-06-23 21:04:18 +04:00
|
|
|
cmCTestTestCommand();
|
2006-03-29 21:01:24 +04:00
|
|
|
|
2005-05-03 16:17:39 +04:00
|
|
|
/**
|
|
|
|
* This is a virtual constructor for the command.
|
|
|
|
*/
|
2006-03-29 21:01:24 +04:00
|
|
|
virtual cmCommand* Clone()
|
2005-05-03 16:17:39 +04:00
|
|
|
{
|
|
|
|
cmCTestTestCommand* ni = new cmCTestTestCommand;
|
2006-03-10 23:03:09 +03:00
|
|
|
ni->CTest = this->CTest;
|
|
|
|
ni->CTestScriptHandler = this->CTestScriptHandler;
|
2005-05-03 16:17:39 +04: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_test";}
|
2005-05-03 16:17:39 +04:00
|
|
|
|
2005-06-23 21:04:18 +04:00
|
|
|
cmTypeMacro(cmCTestTestCommand, cmCTestHandlerCommand);
|
|
|
|
|
|
|
|
protected:
|
2005-09-19 23:08:00 +04:00
|
|
|
virtual cmCTestGenericHandler* InitializeActualHandler();
|
2005-06-23 21:04:18 +04:00
|
|
|
cmCTestGenericHandler* InitializeHandler();
|
2005-05-03 16:17:39 +04:00
|
|
|
|
2005-06-23 21:04:18 +04:00
|
|
|
enum {
|
|
|
|
ctt_BUILD = ct_LAST,
|
|
|
|
ctt_RETURN_VALUE,
|
|
|
|
ctt_START,
|
|
|
|
ctt_END,
|
|
|
|
ctt_STRIDE,
|
2008-09-09 19:44:16 +04:00
|
|
|
ctt_EXCLUDE,
|
|
|
|
ctt_INCLUDE,
|
2009-02-10 22:24:24 +03:00
|
|
|
ctt_EXCLUDE_LABEL,
|
|
|
|
ctt_INCLUDE_LABEL,
|
2009-09-02 20:35:42 +04:00
|
|
|
ctt_PARALLEL_LEVEL,
|
2009-10-29 22:30:12 +03:00
|
|
|
ctt_SCHEDULE_RANDOM,
|
2010-03-16 22:33:55 +03:00
|
|
|
ctt_STOP_TIME,
|
2005-06-23 21:04:18 +04:00
|
|
|
ctt_LAST
|
|
|
|
};
|
2005-05-03 16:17:39 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|