2016-09-27 15:01:08 -04:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2005-06-14 14:00:45 -04:00
|
|
|
#ifndef cmCTestCoverageCommand_h
|
|
|
|
#define cmCTestCoverageCommand_h
|
|
|
|
|
2016-08-24 22:01:40 +02:00
|
|
|
#include <cmConfigure.h>
|
|
|
|
|
2006-03-29 12:01:24 -05:00
|
|
|
#include "cmCTestHandlerCommand.h"
|
2016-08-24 22:01:40 +02:00
|
|
|
#include "cmTypeMacro.h"
|
|
|
|
|
|
|
|
#include <set>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
class cmCTestGenericHandler;
|
|
|
|
class cmCommand;
|
2005-06-14 14:00:45 -04:00
|
|
|
|
|
|
|
/** \class cmCTestCoverage
|
|
|
|
* \brief Run a ctest script
|
|
|
|
*
|
|
|
|
* cmCTestCoverageCommand defineds the command to test the project.
|
|
|
|
*/
|
2006-03-29 12:01:24 -05:00
|
|
|
class cmCTestCoverageCommand : public cmCTestHandlerCommand
|
2005-06-14 14:00:45 -04:00
|
|
|
{
|
|
|
|
public:
|
2009-03-05 10:17:42 -05:00
|
|
|
cmCTestCoverageCommand();
|
2006-03-09 11:17:10 -05:00
|
|
|
|
2005-06-14 14:00:45 -04:00
|
|
|
/**
|
|
|
|
* This is a virtual constructor for the command.
|
|
|
|
*/
|
2016-06-27 21:25:27 +02:00
|
|
|
cmCommand* Clone() CM_OVERRIDE
|
2016-05-16 10:34:04 -04:00
|
|
|
{
|
2005-06-14 14:00:45 -04:00
|
|
|
cmCTestCoverageCommand* ni = new cmCTestCoverageCommand;
|
2006-03-10 15:03:09 -05:00
|
|
|
ni->CTest = this->CTest;
|
|
|
|
ni->CTestScriptHandler = this->CTestScriptHandler;
|
2005-06-14 14:00:45 -04:00
|
|
|
return ni;
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2005-06-14 14:00:45 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the command as specified in CMakeList.txt.
|
|
|
|
*/
|
2016-06-27 21:25:27 +02:00
|
|
|
std::string GetName() const CM_OVERRIDE { return "ctest_coverage"; }
|
2005-06-14 14:00:45 -04:00
|
|
|
|
2006-03-29 12:01:24 -05:00
|
|
|
cmTypeMacro(cmCTestCoverageCommand, cmCTestHandlerCommand);
|
2005-06-14 14:00:45 -04:00
|
|
|
|
2006-03-29 12:01:24 -05:00
|
|
|
protected:
|
2016-06-27 21:25:27 +02:00
|
|
|
cmCTestGenericHandler* InitializeHandler() CM_OVERRIDE;
|
2009-03-02 15:33:18 -05:00
|
|
|
|
2016-06-27 21:25:27 +02:00
|
|
|
bool CheckArgumentKeyword(std::string const& arg) CM_OVERRIDE;
|
|
|
|
bool CheckArgumentValue(std::string const& arg) CM_OVERRIDE;
|
2009-03-02 15:33:18 -05:00
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
ArgumentDoingLabels = Superclass::ArgumentDoingLast1,
|
|
|
|
ArgumentDoingLast2
|
|
|
|
};
|
|
|
|
|
|
|
|
bool LabelsMentioned;
|
2014-02-10 00:21:34 -05:00
|
|
|
std::set<std::string> Labels;
|
2005-06-14 14:00:45 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|