2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc.
|
2005-06-04 00:10:55 +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-04 00:10:55 +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-04 00:10:55 +04:00
|
|
|
|
|
|
|
#ifndef cmCTestBuildAndTestHandler_h
|
|
|
|
#define cmCTestBuildAndTestHandler_h
|
|
|
|
|
|
|
|
|
|
|
|
#include "cmCTestGenericHandler.h"
|
|
|
|
#include "cmListFileCache.h"
|
|
|
|
|
|
|
|
class cmake;
|
|
|
|
|
|
|
|
/** \class cmCTestBuildAndTestHandler
|
|
|
|
* \brief A class that handles ctest -S invocations
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
class cmCTestBuildAndTestHandler : public cmCTestGenericHandler
|
|
|
|
{
|
|
|
|
public:
|
2005-06-17 21:04:56 +04:00
|
|
|
cmTypeMacro(cmCTestBuildAndTestHandler, cmCTestGenericHandler);
|
2005-06-04 00:10:55 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The main entry point for this class
|
|
|
|
*/
|
|
|
|
int ProcessHandler();
|
|
|
|
|
|
|
|
//! Set all the build and test arguments
|
|
|
|
virtual int ProcessCommandLineArguments(
|
|
|
|
const std::string& currentArg, size_t& idx,
|
|
|
|
const std::vector<std::string>& allArgs);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get the output variable
|
|
|
|
*/
|
|
|
|
const char* GetOutput();
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2005-06-04 00:10:55 +04:00
|
|
|
cmCTestBuildAndTestHandler();
|
|
|
|
|
2005-06-17 21:04:56 +04:00
|
|
|
virtual void Initialize();
|
|
|
|
|
2005-06-04 00:10:55 +04:00
|
|
|
protected:
|
|
|
|
///! Run CMake and build a test and then run it as a single test.
|
|
|
|
int RunCMakeAndTest(std::string* output);
|
2012-08-13 21:42:58 +04:00
|
|
|
int RunCMake(std::string* outstring, cmOStringStream &out,
|
2005-06-04 00:10:55 +04:00
|
|
|
std::string &cmakeOutString,
|
|
|
|
std::string &cwd, cmake *cm);
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2014-02-10 09:21:34 +04:00
|
|
|
std::string Output;
|
2006-03-10 23:03:09 +03:00
|
|
|
|
|
|
|
std::string BuildGenerator;
|
2012-12-11 01:53:56 +04:00
|
|
|
std::string BuildGeneratorToolset;
|
2006-03-10 23:03:09 +03:00
|
|
|
std::vector<std::string> BuildOptions;
|
|
|
|
bool BuildTwoConfig;
|
|
|
|
std::string BuildMakeProgram;
|
2007-03-19 20:04:10 +03:00
|
|
|
std::string ConfigSample;
|
2006-03-10 23:03:09 +03:00
|
|
|
std::string SourceDir;
|
|
|
|
std::string BinaryDir;
|
|
|
|
std::string BuildProject;
|
|
|
|
std::string TestCommand;
|
|
|
|
bool BuildNoClean;
|
|
|
|
std::string BuildRunDir;
|
|
|
|
std::string ExecutableDirectory;
|
|
|
|
std::vector<std::string> TestCommandArgs;
|
|
|
|
std::vector<std::string> BuildTargets;
|
|
|
|
bool BuildNoCMake;
|
2007-01-25 19:16:16 +03:00
|
|
|
double Timeout;
|
2005-06-04 00:10:55 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|