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 cmCTestSubmitCommand_h
|
|
|
|
#define cmCTestSubmitCommand_h
|
|
|
|
|
2006-03-29 21:01:24 +04:00
|
|
|
#include "cmCTestHandlerCommand.h"
|
2009-01-12 18:38:27 +03:00
|
|
|
#include "cmCTest.h"
|
2005-05-03 16:17:39 +04:00
|
|
|
|
|
|
|
/** \class cmCTestSubmit
|
|
|
|
* \brief Run a ctest script
|
|
|
|
*
|
2006-03-09 19:17:10 +03:00
|
|
|
* cmCTestSubmitCommand defineds the command to submit the test results for
|
|
|
|
* the project.
|
2005-05-03 16:17:39 +04:00
|
|
|
*/
|
2006-03-29 21:01:24 +04:00
|
|
|
class cmCTestSubmitCommand : public cmCTestHandlerCommand
|
2005-05-03 16:17:39 +04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2009-02-03 19:52:54 +03:00
|
|
|
cmCTestSubmitCommand()
|
|
|
|
{
|
|
|
|
this->PartsMentioned = false;
|
|
|
|
this->FilesMentioned = false;
|
2010-06-10 20:25:49 +04:00
|
|
|
this->InternalTest = false;
|
2010-06-03 18:34:34 +04:00
|
|
|
this->RetryCount = "";
|
|
|
|
this->RetryDelay = "";
|
2009-02-03 19:52:54 +03:00
|
|
|
}
|
2006-03-09 19:17:10 +03:00
|
|
|
|
2005-05-03 16:17:39 +04:00
|
|
|
/**
|
|
|
|
* This is a virtual constructor for the command.
|
|
|
|
*/
|
2006-03-09 19:17:10 +03:00
|
|
|
virtual cmCommand* Clone()
|
2005-05-03 16:17:39 +04:00
|
|
|
{
|
|
|
|
cmCTestSubmitCommand* ni = new cmCTestSubmitCommand;
|
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_submit";}
|
2005-05-03 16:17:39 +04:00
|
|
|
|
2006-03-29 21:01:24 +04:00
|
|
|
cmTypeMacro(cmCTestSubmitCommand, cmCTestHandlerCommand);
|
2005-05-03 16:17:39 +04:00
|
|
|
|
2006-03-29 21:01:24 +04:00
|
|
|
protected:
|
|
|
|
cmCTestGenericHandler* InitializeHandler();
|
2009-01-12 18:38:27 +03:00
|
|
|
|
|
|
|
virtual bool CheckArgumentKeyword(std::string const& arg);
|
|
|
|
virtual bool CheckArgumentValue(std::string const& arg);
|
2009-02-03 19:52:54 +03:00
|
|
|
|
2009-01-12 18:38:27 +03:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
ArgumentDoingParts = Superclass::ArgumentDoingLast1,
|
2009-02-03 19:52:54 +03:00
|
|
|
ArgumentDoingFiles,
|
2010-06-03 18:34:34 +04:00
|
|
|
ArgumentDoingRetryDelay,
|
|
|
|
ArgumentDoingRetryCount,
|
2009-01-12 18:38:27 +03:00
|
|
|
ArgumentDoingLast2
|
|
|
|
};
|
2009-02-03 19:52:54 +03:00
|
|
|
|
|
|
|
bool PartsMentioned;
|
2009-01-12 18:38:27 +03:00
|
|
|
std::set<cmCTest::Part> Parts;
|
2009-02-03 19:52:54 +03:00
|
|
|
bool FilesMentioned;
|
2010-06-10 20:25:49 +04:00
|
|
|
bool InternalTest;
|
2009-02-03 19:52:54 +03:00
|
|
|
cmCTest::SetOfStrings Files;
|
2010-06-03 18:34:34 +04:00
|
|
|
std::string RetryCount;
|
|
|
|
std::string RetryDelay;
|
2005-05-03 16:17:39 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|