2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2005-06-14 22:00:45 +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-06-14 22:00:45 +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-06-14 22:00:45 +04:00
|
|
|
#ifndef cmCTestMemCheckCommand_h
|
|
|
|
#define cmCTestMemCheckCommand_h
|
|
|
|
|
2005-06-23 21:04:18 +04:00
|
|
|
#include "cmCTestTestCommand.h"
|
|
|
|
|
|
|
|
class cmCTestGenericHandler;
|
2005-06-14 22:00:45 +04:00
|
|
|
|
|
|
|
/** \class cmCTestMemCheck
|
|
|
|
* \brief Run a ctest script
|
|
|
|
*
|
|
|
|
* cmCTestMemCheckCommand defineds the command to test the project.
|
|
|
|
*/
|
2005-06-23 21:04:18 +04:00
|
|
|
class cmCTestMemCheckCommand : public cmCTestTestCommand
|
2005-06-14 22:00:45 +04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
cmCTestMemCheckCommand() {}
|
2006-03-09 19:17:10 +03:00
|
|
|
|
2005-06-14 22:00:45 +04:00
|
|
|
/**
|
|
|
|
* This is a virtual constructor for the command.
|
|
|
|
*/
|
2006-03-09 19:17:10 +03:00
|
|
|
virtual cmCommand* Clone()
|
2005-06-14 22:00:45 +04:00
|
|
|
{
|
|
|
|
cmCTestMemCheckCommand* ni = new cmCTestMemCheckCommand;
|
2006-03-10 23:03:09 +03:00
|
|
|
ni->CTest = this->CTest;
|
|
|
|
ni->CTestScriptHandler = this->CTestScriptHandler;
|
2005-06-14 22:00:45 +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_memcheck";}
|
2005-06-14 22:00:45 +04:00
|
|
|
|
2005-06-23 21:04:18 +04:00
|
|
|
cmTypeMacro(cmCTestMemCheckCommand, cmCTestTestCommand);
|
2005-06-14 22:00:45 +04:00
|
|
|
|
2005-06-23 21:04:18 +04:00
|
|
|
protected:
|
|
|
|
cmCTestGenericHandler* InitializeActualHandler();
|
2005-06-14 22:00:45 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|