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.
|
|
|
|
*/
|
2008-05-12 17:11:51 +04:00
|
|
|
virtual const char* GetName() { return "ctest_memcheck";}
|
2005-06-14 22:00:45 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Succinct documentation.
|
|
|
|
*/
|
2006-03-09 19:17:10 +03:00
|
|
|
virtual const char* GetTerseDocumentation()
|
2005-06-14 22:00:45 +04:00
|
|
|
{
|
2009-02-20 23:50:57 +03:00
|
|
|
return "Run tests with a dynamic analysis tool.";
|
2005-06-14 22:00:45 +04:00
|
|
|
}
|
2006-03-09 19:17:10 +03:00
|
|
|
|
2005-06-14 22:00:45 +04:00
|
|
|
/**
|
|
|
|
* More documentation.
|
|
|
|
*/
|
|
|
|
virtual const char* GetFullDocumentation()
|
|
|
|
{
|
|
|
|
return
|
2009-08-31 19:32:39 +04:00
|
|
|
" ctest_memcheck([BUILD build_dir] [RETURN_VALUE res] [APPEND]\n"
|
|
|
|
" [START start number] [END end number]\n"
|
|
|
|
" [STRIDE stride number] [EXCLUDE exclude regex ]\n"
|
|
|
|
" [INCLUDE include regex] \n"
|
|
|
|
" [EXCLUDE_LABEL exclude regex] \n"
|
2009-09-03 18:47:14 +04:00
|
|
|
" [INCLUDE_LABEL label regex] \n"
|
|
|
|
" [PARALLEL_LEVEL level] )\n"
|
2009-08-31 19:32:39 +04:00
|
|
|
"Tests the given build directory and stores results in MemCheck.xml. "
|
|
|
|
"The second argument is a variable that will hold value. Optionally, "
|
|
|
|
"you can specify the starting test number START, the ending test number "
|
|
|
|
"END, the number of tests to skip between each test STRIDE, a regular "
|
|
|
|
"expression for tests to run INCLUDE, or a regular expression for tests "
|
|
|
|
"not to run EXCLUDE. EXCLUDE_LABEL and INCLUDE_LABEL are regular "
|
|
|
|
"expressions for tests to be included or excluded by the test "
|
2009-09-03 18:47:14 +04:00
|
|
|
"property LABEL. PARALLEL_LEVEL should be set to a positive number "
|
|
|
|
"representing the number of tests to be run in parallel."
|
2009-02-20 23:51:03 +03:00
|
|
|
"\n"
|
|
|
|
CTEST_COMMAND_APPEND_OPTION_DOCS;
|
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
|
|
|
|
|