cmake/Source/cmCTest.h

651 lines
18 KiB
C
Raw Normal View History

2016-10-30 18:24:19 +01:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#ifndef cmCTest_h
#define cmCTest_h
2017-07-20 19:35:53 +02:00
#include "cmConfigure.h"
2016-07-09 11:21:54 +02:00
2017-07-20 19:35:53 +02:00
#include "cmProcessOutput.h"
#include "cmsys/String.hxx"
2016-10-30 18:24:19 +01:00
#include <map>
#include <set>
#include <sstream>
#include <string>
#include <time.h>
2016-10-30 18:24:19 +01:00
#include <vector>
class cmCTestGenericHandler;
2010-03-17 14:00:29 +02:00
class cmCTestStartCommand;
2016-10-30 18:24:19 +01:00
class cmGeneratedFileStream;
class cmMakefile;
2015-08-17 11:37:30 +02:00
class cmXMLWriter;
2016-10-30 18:24:19 +01:00
/** \class cmCTest
* \brief Represents a ctest invocation.
*
* This class represents a ctest invocation. It is the top level class when
* running ctest.
*
*/
class cmCTest
{
2009-10-04 10:30:41 +03:00
friend class cmCTestRunTest;
friend class cmCTestMultiProcessHandler;
2016-07-09 11:21:54 +02:00
public:
2017-04-14 19:02:05 +02:00
typedef cmProcessOutput::Encoding Encoding;
2009-10-04 10:30:41 +03:00
/** Enumerate parts of the testing and submission process. */
enum Part
{
PartStart,
PartUpdate,
PartConfigure,
PartBuild,
PartTest,
PartCoverage,
PartMemCheck,
PartSubmit,
PartNotes,
PartExtraFiles,
2011-06-19 15:41:06 +03:00
PartUpload,
2009-10-04 10:30:41 +03:00
PartCount // Update names in constructor when adding a part
};
/** Representation of one part. */
struct PartInfo
{
2016-07-09 11:21:54 +02:00
PartInfo()
: Enabled(false)
{
}
2009-10-04 10:30:41 +03:00
2015-04-27 22:25:09 +02:00
void SetName(const std::string& name) { this->Name = name; }
const std::string& GetName() const { return this->Name; }
2009-10-04 10:30:41 +03:00
void Enable() { this->Enabled = true; }
operator bool() const { return this->Enabled; }
std::vector<std::string> SubmitFiles;
2016-07-09 11:21:54 +02:00
2009-10-04 10:30:41 +03:00
private:
bool Enabled;
std::string Name;
};
2010-03-17 14:00:29 +02:00
#ifdef CMAKE_BUILD_WITH_CMAKE
2016-07-09 11:21:54 +02:00
enum HTTPMethod
{
2010-03-17 14:00:29 +02:00
HTTP_GET,
HTTP_POST,
HTTP_PUT
};
/**
* Perform an HTTP request.
*/
static int HTTPRequest(std::string url, HTTPMethod method,
2016-07-09 11:21:54 +02:00
std::string& response, std::string const& fields = "",
std::string const& putFile = "", int timeout = 0);
2010-03-17 14:00:29 +02:00
#endif
2009-10-04 10:30:41 +03:00
/** Get a testing part id from its string name. Returns PartCount
if the string does not name a valid part. */
Part GetPartFromName(const char* name);
2015-04-27 22:25:09 +02:00
typedef std::vector<cmsys::String> VectorOfStrings;
typedef std::set<std::string> SetOfStrings;
2016-10-30 18:24:19 +01:00
/** Process Command line arguments */
int Run(std::vector<std::string>&, std::string* output = CM_NULLPTR);
/**
* Initialize and finalize testing
*/
2010-03-17 14:00:29 +02:00
bool InitializeFromCommand(cmCTestStartCommand* command);
void Finalize();
/**
2016-10-30 18:24:19 +01:00
* Process the dashboard client steps.
*
2016-10-30 18:24:19 +01:00
* Steps are enabled using SetTest()
*
* The execution of the steps (or #Part) should look like this:
*
* /code
* ctest foo;
* foo.Initialize();
* // Set some things on foo
2016-10-30 18:24:19 +01:00
* foo.ProcessSteps();
* foo.Finalize();
2016-10-30 18:24:19 +01:00
* /endcode
*
* \sa Initialize(), Finalize(), Part, PartInfo, SetTest()
*/
2016-10-30 18:24:19 +01:00
int ProcessSteps();
2016-10-30 18:24:19 +01:00
/**
* A utility function that returns the nightly time
*/
2016-07-09 11:21:54 +02:00
struct tm* GetNightlyTime(std::string const& str, bool tomorrowtag);
2016-10-30 18:24:19 +01:00
/**
* Is the tomorrow tag set?
*/
2015-04-27 22:25:09 +02:00
bool GetTomorrowTag() { return this->TomorrowTag; }
/**
* Try to run tests of the project
*/
int TestDirectory(bool memcheck);
2016-10-30 18:24:19 +01:00
/** what is the configuraiton type, e.g. Debug, Release etc. */
std::string const& GetConfigType();
double GetTimeOut() { return this->TimeOut; }
void SetTimeOut(double t) { this->TimeOut = t; }
2010-03-17 14:00:29 +02:00
double GetGlobalTimeout() { return this->GlobalTimeout; }
2016-10-30 18:24:19 +01:00
/** how many test to run at the same time */
2009-10-04 10:30:41 +03:00
int GetParallelLevel() { return this->ParallelLevel; }
void SetParallelLevel(int);
2015-11-17 17:22:37 +01:00
unsigned long GetTestLoad() { return this->TestLoad; }
void SetTestLoad(unsigned long);
/**
* Check if CTest file exists
*/
bool CTestFileExists(const std::string& filename);
2009-10-04 10:30:41 +03:00
bool AddIfExists(Part part, const char* file);
/**
* Set the cmake test
*/
bool SetTest(const char*, bool report = true);
/**
* Set the cmake test mode (experimental, nightly, continuous).
*/
void SetTestModel(int mode);
2015-04-27 22:25:09 +02:00
int GetTestModel() { return this->TestModel; }
std::string GetTestModelString();
static int GetTestModelFromString(const char* str);
static std::string CleanString(const std::string& str);
2015-04-27 22:25:09 +02:00
std::string GetCTestConfiguration(const std::string& name);
2016-07-09 11:21:54 +02:00
void SetCTestConfiguration(const char* name, const char* value,
bool suppress = false);
void EmptyCTestConfiguration();
/**
* constructor and destructor
*/
cmCTest();
~cmCTest();
2016-10-30 18:24:19 +01:00
/** Set the notes files to be created. */
void SetNotesFiles(const char* notes);
2015-04-27 22:25:09 +02:00
void PopulateCustomVector(cmMakefile* mf, const std::string& definition,
2016-07-09 11:21:54 +02:00
std::vector<std::string>& vec);
void PopulateCustomInteger(cmMakefile* mf, const std::string& def, int& val);
2016-10-30 18:24:19 +01:00
/** Get the current time as string */
std::string CurrentTime();
2016-10-30 18:24:19 +01:00
/** tar/gzip and then base 64 encode a file */
2016-07-09 11:21:54 +02:00
std::string Base64GzipEncodeFile(std::string const& file);
2016-10-30 18:24:19 +01:00
/** base64 encode a file */
2016-07-09 11:21:54 +02:00
std::string Base64EncodeFile(std::string const& file);
2011-06-19 15:41:06 +03:00
2013-03-16 19:13:01 +02:00
/**
2011-06-19 15:41:06 +03:00
* Return the time remaining that the script is allowed to run in
* seconds if the user has set the variable CTEST_TIME_LIMIT. If that has
* not been set it returns 1e7 seconds
*/
double GetRemainingTimeAllowed();
2013-03-16 19:13:01 +02:00
2016-10-30 18:24:19 +01:00
/**
* Open file in the output directory and set the stream
*/
2016-07-09 11:21:54 +02:00
bool OpenOutputFile(const std::string& path, const std::string& name,
cmGeneratedFileStream& stream, bool compress = false);
2016-10-30 18:24:19 +01:00
/** Should we only show what we would do? */
bool GetShowOnly();
2010-03-17 14:00:29 +02:00
bool ShouldUseHTTP10() { return this->UseHTTP10; }
2010-11-13 01:00:53 +02:00
bool ShouldPrintLabels() { return this->PrintLabels; }
2010-03-17 14:00:29 +02:00
bool ShouldCompressTestOutput();
2011-06-19 15:41:06 +03:00
bool CompressString(std::string& str);
2010-03-17 14:00:29 +02:00
2010-06-23 01:18:35 +03:00
std::string GetStopTime() { return this->StopTime; }
2016-07-09 11:21:54 +02:00
void SetStopTime(std::string const& time);
2010-06-23 01:18:35 +03:00
2016-10-30 18:24:19 +01:00
/** Used for parallel ctest job scheduling */
2010-03-17 14:00:29 +02:00
std::string GetScheduleType() { return this->ScheduleType; }
2017-04-14 19:02:05 +02:00
void SetScheduleType(std::string const& type) { this->ScheduleType = type; }
2009-10-04 10:30:41 +03:00
2016-10-30 18:24:19 +01:00
/** The max output width */
2009-10-04 10:30:41 +03:00
int GetMaxTestNameWidth() const;
2016-07-09 11:21:54 +02:00
void SetMaxTestNameWidth(int w) { this->MaxTestNameWidth = w; }
2009-10-04 10:30:41 +03:00
/**
* Run a single executable command and put the stdout and stderr
* in output.
*
* If verbose is false, no user-viewable output from the program
* being run will be generated.
*
* If timeout is specified, the command will be terminated after
* timeout expires. Timeout is specified in seconds.
*
* Argument retVal should be a pointer to the location where the
* exit code will be stored. If the retVal is not specified and
* the program exits with a code other than 0, then the this
* function will return false.
*
* If the command has spaces in the path the caller MUST call
* cmSystemTools::ConvertToRunCommandPath on the command before passing
* it into this function or it will not work. The command must be correctly
* escaped for this to with spaces.
*/
2016-07-09 11:21:54 +02:00
bool RunCommand(const char* command, std::string* stdOut,
2016-10-30 18:24:19 +01:00
std::string* stdErr, int* retVal = CM_NULLPTR,
2017-04-14 19:02:05 +02:00
const char* dir = CM_NULLPTR, double timeout = 0.0,
Encoding encoding = cmProcessOutput::Auto);
2016-10-30 18:24:19 +01:00
/**
* Clean/make safe for xml the given value such that it may be used as
* one of the key fields by CDash when computing the buildid.
*/
2012-02-18 12:40:36 +02:00
static std::string SafeBuildIdField(const std::string& value);
2016-10-30 18:24:19 +01:00
/** Start CTest XML output file */
2015-08-17 11:37:30 +02:00
void StartXML(cmXMLWriter& xml, bool append);
2016-10-30 18:24:19 +01:00
/** End CTest XML output file */
2015-08-17 11:37:30 +02:00
void EndXML(cmXMLWriter& xml);
2016-10-30 18:24:19 +01:00
/**
* Run command specialized for make and configure. Returns process status
* and retVal is return value or exception.
*/
2016-07-09 11:21:54 +02:00
int RunMakeCommand(const char* command, std::string& output, int* retVal,
2017-04-14 19:02:05 +02:00
const char* dir, int timeout, std::ostream& ofs,
Encoding encoding = cmProcessOutput::Auto);
2016-10-30 18:24:19 +01:00
/** Return the current tag */
std::string GetCurrentTag();
2016-10-30 18:24:19 +01:00
/** Get the path to the build tree */
std::string GetBinaryDir();
2016-10-30 18:24:19 +01:00
/**
* Get the short path to the file.
*
* This means if the file is in binary or
* source directory, it will become /.../relative/path/to/file
*/
std::string GetShortPathToFile(const char* fname);
2016-07-09 11:21:54 +02:00
enum
{
EXPERIMENTAL,
NIGHTLY,
CONTINUOUS
};
2016-10-30 18:24:19 +01:00
/** provide some more detailed info on the return code for ctest */
2016-07-09 11:21:54 +02:00
enum
{
UPDATE_ERRORS = 0x01,
CONFIGURE_ERRORS = 0x02,
2016-07-09 11:21:54 +02:00
BUILD_ERRORS = 0x04,
TEST_ERRORS = 0x08,
MEMORY_ERRORS = 0x10,
COVERAGE_ERRORS = 0x20,
SUBMIT_ERRORS = 0x40
};
2016-10-30 18:24:19 +01:00
/** Are we producing XML */
bool GetProduceXML();
void SetProduceXML(bool v);
2016-10-30 18:24:19 +01:00
/**
* Run command specialized for tests. Returns process status and retVal is
* return value or exception. If environment is non-null, it is used to set
* environment variables prior to running the test. After running the test,
* environment variables are restored to their previous values.
*/
2016-07-09 11:21:54 +02:00
int RunTest(std::vector<const char*> args, std::string* output, int* retVal,
std::ostream* logfile, double testTimeOut,
2017-04-14 19:02:05 +02:00
std::vector<std::string>* environment,
Encoding encoding = cmProcessOutput::Auto);
/**
* Execute handler and return its result. If the handler fails, it returns
* negative value.
*/
int ExecuteHandler(const char* handler);
2016-10-30 18:24:19 +01:00
/**
* Get the handler object
*/
cmCTestGenericHandler* GetHandler(const char* handler);
cmCTestGenericHandler* GetInitializedHandler(const char* handler);
2016-10-30 18:24:19 +01:00
/**
* Set the CTest variable from CMake variable
*/
bool SetCTestConfigurationFromCMakeVariable(cmMakefile* mf,
2016-07-09 11:21:54 +02:00
const char* dconfig,
const std::string& cmake_var,
bool suppress = false);
2016-10-30 18:24:19 +01:00
/** Make string safe to be send as an URL */
static std::string MakeURLSafe(const std::string&);
2009-10-04 10:30:41 +03:00
/** Decode a URL to the original string. */
static std::string DecodeURL(const std::string&);
2016-10-30 18:24:19 +01:00
/**
* Should ctect configuration be updated. When using new style ctest
* script, this should be true.
*/
void SetSuppressUpdatingCTestConfiguration(bool val)
2016-07-09 11:21:54 +02:00
{
this->SuppressUpdatingCTestConfiguration = val;
2016-07-09 11:21:54 +02:00
}
2016-10-30 18:24:19 +01:00
/**
* Add overwrite to ctest configuration.
*
* The format is key=value
*/
2015-04-27 22:25:09 +02:00
void AddCTestConfigurationOverwrite(const std::string& encstr);
2016-10-30 18:24:19 +01:00
/** Create XML file that contains all the notes specified */
2016-07-09 11:21:54 +02:00
int GenerateNotesFile(const VectorOfStrings& files);
2016-10-30 18:24:19 +01:00
/** Submit extra files to the server */
bool SubmitExtraFiles(const char* files);
2016-07-09 11:21:54 +02:00
bool SubmitExtraFiles(const VectorOfStrings& files);
2016-10-30 18:24:19 +01:00
/** Set the output log file name */
void SetOutputLogFileName(const char* name);
2016-10-30 18:24:19 +01:00
/** Set the visual studio or Xcode config type */
void SetConfigType(const char* ct);
2016-10-30 18:24:19 +01:00
/** Various log types */
2016-07-09 11:21:54 +02:00
enum
{
DEBUG = 0,
OUTPUT,
HANDLER_OUTPUT,
2015-11-17 17:22:37 +01:00
HANDLER_PROGRESS_OUTPUT,
HANDLER_VERBOSE_OUTPUT,
WARNING,
ERROR_MESSAGE,
OTHER
};
2016-10-30 18:24:19 +01:00
/** Add log to the output */
2015-08-17 11:37:30 +02:00
void Log(int logType, const char* file, int line, const char* msg,
2016-07-09 11:21:54 +02:00
bool suppress = false);
2016-10-30 18:24:19 +01:00
/** Get the version of dart server */
int GetDartVersion() { return this->DartVersion; }
2013-03-16 19:13:01 +02:00
int GetDropSiteCDash() { return this->DropSiteCDash; }
2016-10-30 18:24:19 +01:00
/** Add file to be submitted */
2009-10-04 10:30:41 +03:00
void AddSubmitFile(Part part, const char* name);
std::vector<std::string> const& GetSubmitFiles(Part part)
2016-07-09 11:21:54 +02:00
{
return this->Parts[part].SubmitFiles;
}
2009-10-04 10:30:41 +03:00
void ClearSubmitFiles(Part part) { this->Parts[part].SubmitFiles.clear(); }
2016-10-30 18:24:19 +01:00
/**
* Read the custom configuration files and apply them to the current ctest
*/
int ReadCustomConfigurationFileTree(const char* dir, cmMakefile* mf);
2016-07-09 11:21:54 +02:00
std::vector<std::string>& GetInitialCommandLineArguments()
{
return this->InitialCommandLineArguments;
}
2016-10-30 18:24:19 +01:00
/** Set the track to submit to */
void SetSpecificTrack(const char* track);
const char* GetSpecificTrack();
2009-10-04 10:30:41 +03:00
void SetFailover(bool failover) { this->Failover = failover; }
bool GetFailover() { return this->Failover; }
void SetBatchJobs(bool batch = true) { this->BatchJobs = batch; }
bool GetBatchJobs() { return this->BatchJobs; }
2016-07-09 11:21:54 +02:00
bool GetVerbose() { return this->Verbose; }
bool GetExtraVerbose() { return this->ExtraVerbose; }
2009-10-04 10:30:41 +03:00
/** Direct process output to given streams. */
void SetStreams(std::ostream* out, std::ostream* err)
2016-07-09 11:21:54 +02:00
{
this->StreamOut = out;
this->StreamErr = err;
}
2015-08-17 11:37:30 +02:00
void AddSiteProperties(cmXMLWriter& xml);
2016-07-09 11:21:54 +02:00
bool GetLabelSummary() { return this->LabelSummary; }
2010-06-23 01:18:35 +03:00
std::string GetCostDataFile();
2012-08-04 10:26:08 +03:00
2016-07-09 11:21:54 +02:00
const std::map<std::string, std::string>& GetDefinitions()
{
2012-08-04 10:26:08 +03:00
return this->Definitions;
2016-07-09 11:21:54 +02:00
}
2016-10-30 18:24:19 +01:00
/** Return the number of times a test should be run */
2016-07-09 11:21:54 +02:00
int GetTestRepeat() { return this->RepeatTests; }
2016-10-30 18:24:19 +01:00
/** Return true if test should run until fail */
2016-07-09 11:21:54 +02:00
bool GetRepeatUntilFail() { return this->RepeatUntilFail; }
2016-10-30 18:24:19 +01:00
private:
2015-08-17 11:37:30 +02:00
int RepeatTests;
bool RepeatUntilFail;
std::string ConfigType;
2010-03-17 14:00:29 +02:00
std::string ScheduleType;
2010-06-23 01:18:35 +03:00
std::string StopTime;
bool NextDayStopTime;
bool Verbose;
bool ExtraVerbose;
bool ProduceXML;
2009-10-04 10:30:41 +03:00
bool LabelSummary;
2010-03-17 14:00:29 +02:00
bool UseHTTP10;
2010-11-13 01:00:53 +02:00
bool PrintLabels;
2009-10-04 10:30:41 +03:00
bool Failover;
bool BatchJobs;
bool ForceNewCTestProcess;
bool RunConfigurationScript;
int GenerateNotesFile(const char* files);
2010-06-23 01:18:35 +03:00
void DetermineNextDayStop();
// these are helper classes
2016-07-09 11:21:54 +02:00
typedef std::map<std::string, cmCTestGenericHandler*> t_TestingHandlers;
t_TestingHandlers TestingHandlers;
bool ShowOnly;
2016-10-30 18:24:19 +01:00
/** Map of configuration properties */
2015-04-27 22:25:09 +02:00
typedef std::map<std::string, std::string> CTestConfigurationMap;
2016-07-09 11:21:54 +02:00
std::string CTestConfigFile;
2009-10-04 10:30:41 +03:00
// TODO: The ctest configuration should be a hierarchy of
// configuration option sources: command-line, script, ini file.
// Then the ini file can get re-loaded whenever it changes without
// affecting any higher-precedence settings.
CTestConfigurationMap CTestConfiguration;
CTestConfigurationMap CTestConfigurationOverwrites;
2016-07-09 11:21:54 +02:00
PartInfo Parts[PartCount];
2015-04-27 22:25:09 +02:00
typedef std::map<std::string, Part> PartMapType;
2016-07-09 11:21:54 +02:00
PartMapType PartMap;
2016-07-09 11:21:54 +02:00
std::string CurrentTag;
bool TomorrowTag;
2016-07-09 11:21:54 +02:00
int TestModel;
std::string SpecificTrack;
2016-07-09 11:21:54 +02:00
double TimeOut;
2016-07-09 11:21:54 +02:00
double GlobalTimeout;
2010-03-17 14:00:29 +02:00
2016-07-09 11:21:54 +02:00
int LastStopTimeout;
2010-06-23 01:18:35 +03:00
2016-07-09 11:21:54 +02:00
int MaxTestNameWidth;
2009-10-04 10:30:41 +03:00
2016-07-09 11:21:54 +02:00
int ParallelLevel;
bool ParallelLevelSetInCli;
2009-10-04 10:30:41 +03:00
2016-07-09 11:21:54 +02:00
unsigned long TestLoad;
2015-11-17 17:22:37 +01:00
2016-07-09 11:21:54 +02:00
int CompatibilityMode;
// information for the --build-and-test options
2016-07-09 11:21:54 +02:00
std::string BinaryDir;
2016-07-09 11:21:54 +02:00
std::string NotesFiles;
2016-07-09 11:21:54 +02:00
bool InteractiveDebugMode;
2016-07-09 11:21:54 +02:00
bool ShortDateFormat;
2016-07-09 11:21:54 +02:00
bool CompressXMLFiles;
bool CompressTestOutput;
2010-03-17 14:00:29 +02:00
2009-10-04 10:30:41 +03:00
void InitStreams();
std::ostream* StreamOut;
std::ostream* StreamErr;
void BlockTestErrorDiagnostics();
2010-03-17 14:00:29 +02:00
/**
* Initialize a dashboard run in the given build tree. The "command"
* argument is non-NULL when running from a command-driven (ctest_start)
* dashboard script, and NULL when running from the CTest command
* line. Note that a declarative dashboard script does not actually
* call this method because it sets CTEST_COMMAND to drive a build
* through the ctest command line.
*/
int Initialize(const char* binary_dir, cmCTestStartCommand* command);
2016-10-30 18:24:19 +01:00
/** parse the option after -D and convert it into the appropriate steps */
2016-07-09 11:21:54 +02:00
bool AddTestsForDashboardType(std::string& targ);
2016-10-30 18:24:19 +01:00
/** read as "emit an error message for an unknown -D value" */
2016-07-09 11:21:54 +02:00
void ErrorMessageUnknownDashDValue(std::string& val);
2012-08-04 10:26:08 +03:00
2016-10-30 18:24:19 +01:00
/** add a variable definition from a command line -D value */
2016-07-09 11:21:54 +02:00
bool AddVariableDefinition(const std::string& arg);
2012-08-04 10:26:08 +03:00
2016-10-30 18:24:19 +01:00
/** parse and process most common command line arguments */
2016-07-09 11:21:54 +02:00
bool HandleCommandLineArguments(size_t& i, std::vector<std::string>& args,
2015-08-17 11:37:30 +02:00
std::string& errormsg);
2016-10-30 18:24:19 +01:00
/** hande the -S -SP and -SR arguments */
2016-07-09 11:21:54 +02:00
void HandleScriptArguments(size_t& i, std::vector<std::string>& args,
bool& SRArgumentSpecified);
2016-10-30 18:24:19 +01:00
/** Reread the configuration file */
bool UpdateCTestConfiguration();
2016-10-30 18:24:19 +01:00
/** Create note from files. */
2016-07-09 11:21:54 +02:00
int GenerateCTestNotesOutput(cmXMLWriter& xml, const VectorOfStrings& files);
2016-10-30 18:24:19 +01:00
/** Check if the argument is the one specified */
bool CheckArgument(const std::string& arg, const char* varg1,
2016-10-30 18:24:19 +01:00
const char* varg2 = CM_NULLPTR);
2016-10-30 18:24:19 +01:00
/** Output errors from a test */
2016-07-09 11:21:54 +02:00
void OutputTestErrors(std::vector<char> const& process_output);
2009-10-04 10:30:41 +03:00
2016-10-30 18:24:19 +01:00
/** Handle the --test-action command line argument */
bool HandleTestActionArgument(const char* ctestExec, size_t& i,
const std::vector<std::string>& args);
/** Handle the --test-model command line argument */
bool HandleTestModelArgument(const char* ctestExec, size_t& i,
const std::vector<std::string>& args);
int RunCMakeAndTest(std::string* output);
int ExecuteTests();
2016-07-09 11:21:54 +02:00
bool SuppressUpdatingCTestConfiguration;
bool Debug;
bool ShowLineNumbers;
bool Quiet;
2016-07-09 11:21:54 +02:00
int DartVersion;
2013-03-16 19:13:01 +02:00
bool DropSiteCDash;
2015-04-27 22:25:09 +02:00
std::vector<std::string> InitialCommandLineArguments;
int SubmitIndex;
cmGeneratedFileStream* OutputLogFile;
int OutputLogFileLastTag;
2009-10-04 10:30:41 +03:00
bool OutputTestOutputOnTestFailure;
2012-08-04 10:26:08 +03:00
std::map<std::string, std::string> Definitions;
};
class cmCTestLogWrite
{
public:
cmCTestLogWrite(const char* data, size_t length)
2016-07-09 11:21:54 +02:00
: Data(data)
, Length(length)
{
}
const char* Data;
size_t Length;
};
2016-07-09 11:21:54 +02:00
inline std::ostream& operator<<(std::ostream& os, const cmCTestLogWrite& c)
{
2016-07-09 11:21:54 +02:00
if (!c.Length) {
return os;
2016-07-09 11:21:54 +02:00
}
os.write(c.Data, c.Length);
os.flush();
return os;
}
2017-07-20 19:35:53 +02:00
#define cmCTestLog(ctSelf, logType, msg) \
do { \
std::ostringstream cmCTestLog_msg; \
cmCTestLog_msg << msg; \
(ctSelf)->Log(cmCTest::logType, __FILE__, __LINE__, \
cmCTestLog_msg.str().c_str()); \
} while (false)
#define cmCTestOptionalLog(ctSelf, logType, msg, suppress) \
do { \
std::ostringstream cmCTestLog_msg; \
cmCTestLog_msg << msg; \
(ctSelf)->Log(cmCTest::logType, __FILE__, __LINE__, \
cmCTestLog_msg.str().c_str(), suppress); \
} while (false)
#endif