2016-09-27 19:01:08 +00:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2003-02-11 02:52:01 +00:00
|
|
|
#ifndef cmCTest_h
|
|
|
|
#define cmCTest_h
|
|
|
|
|
2017-08-25 18:39:02 +00:00
|
|
|
#include "cmConfigure.h" // IWYU pragma: keep
|
2016-09-01 18:05:48 +00:00
|
|
|
|
2017-11-20 20:55:13 +00:00
|
|
|
#include <chrono>
|
2019-09-06 20:58:06 +00:00
|
|
|
#include <ctime>
|
2016-09-01 18:59:28 +00:00
|
|
|
#include <map>
|
2019-07-10 15:38:48 +00:00
|
|
|
#include <memory>
|
2016-09-01 18:59:28 +00:00
|
|
|
#include <sstream>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2002-05-22 13:47:41 +00:00
|
|
|
|
2019-09-30 14:46:28 +00:00
|
|
|
#include "cmDuration.h"
|
|
|
|
#include "cmProcessOutput.h"
|
|
|
|
|
2019-03-18 21:25:50 +00:00
|
|
|
class cmCTestBuildHandler;
|
|
|
|
class cmCTestBuildAndTestHandler;
|
|
|
|
class cmCTestCoverageHandler;
|
|
|
|
class cmCTestScriptHandler;
|
|
|
|
class cmCTestTestHandler;
|
|
|
|
class cmCTestUpdateHandler;
|
|
|
|
class cmCTestConfigureHandler;
|
|
|
|
class cmCTestMemCheckHandler;
|
|
|
|
class cmCTestSubmitHandler;
|
|
|
|
class cmCTestUploadHandler;
|
2009-11-24 13:58:59 +00:00
|
|
|
class cmCTestStartCommand;
|
2016-09-01 18:59:28 +00:00
|
|
|
class cmGeneratedFileStream;
|
|
|
|
class cmMakefile;
|
2015-05-23 22:00:16 +00:00
|
|
|
class cmXMLWriter;
|
2004-01-26 18:57:26 +00:00
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/** \class cmCTest
|
|
|
|
* \brief Represents a ctest invocation.
|
|
|
|
*
|
|
|
|
* This class represents a ctest invocation. It is the top level class when
|
|
|
|
* running ctest.
|
|
|
|
*
|
|
|
|
*/
|
2002-12-17 02:19:21 +00:00
|
|
|
class cmCTest
|
2001-08-23 15:12:19 +00:00
|
|
|
{
|
|
|
|
public:
|
2019-08-23 21:25:56 +00:00
|
|
|
using Encoding = cmProcessOutput::Encoding;
|
2009-01-12 15:37:25 +00:00
|
|
|
/** Enumerate parts of the testing and submission process. */
|
|
|
|
enum Part
|
|
|
|
{
|
|
|
|
PartStart,
|
|
|
|
PartUpdate,
|
|
|
|
PartConfigure,
|
|
|
|
PartBuild,
|
|
|
|
PartTest,
|
|
|
|
PartCoverage,
|
|
|
|
PartMemCheck,
|
|
|
|
PartSubmit,
|
|
|
|
PartNotes,
|
2009-01-12 15:37:55 +00:00
|
|
|
PartExtraFiles,
|
2011-02-18 17:11:51 +00:00
|
|
|
PartUpload,
|
2018-10-04 15:34:27 +00:00
|
|
|
PartDone,
|
2009-01-12 15:37:25 +00:00
|
|
|
PartCount // Update names in constructor when adding a part
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 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);
|
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/** Process Command line arguments */
|
2017-08-22 21:42:36 +00:00
|
|
|
int Run(std::vector<std::string>&, std::string* output = nullptr);
|
2006-03-09 16:57:43 +00:00
|
|
|
|
2002-10-07 00:36:52 +00:00
|
|
|
/**
|
|
|
|
* Initialize and finalize testing
|
|
|
|
*/
|
2009-11-24 13:58:59 +00:00
|
|
|
bool InitializeFromCommand(cmCTestStartCommand* command);
|
2002-10-07 00:36:52 +00:00
|
|
|
void Finalize();
|
|
|
|
|
|
|
|
/**
|
2016-06-21 00:43:42 +00:00
|
|
|
* Process the dashboard client steps.
|
|
|
|
*
|
|
|
|
* Steps are enabled using SetTest()
|
|
|
|
*
|
|
|
|
* The execution of the steps (or #Part) should look like this:
|
2002-10-07 00:36:52 +00:00
|
|
|
*
|
2016-06-21 00:56:43 +00:00
|
|
|
* /code
|
2002-10-07 00:36:52 +00:00
|
|
|
* ctest foo;
|
|
|
|
* foo.Initialize();
|
|
|
|
* // Set some things on foo
|
2016-06-21 00:43:42 +00:00
|
|
|
* foo.ProcessSteps();
|
2002-10-07 00:36:52 +00:00
|
|
|
* foo.Finalize();
|
2016-06-21 00:56:43 +00:00
|
|
|
* /endcode
|
2016-06-21 00:43:42 +00:00
|
|
|
*
|
|
|
|
* \sa Initialize(), Finalize(), Part, PartInfo, SetTest()
|
2002-10-07 00:36:52 +00:00
|
|
|
*/
|
2016-06-21 00:43:42 +00:00
|
|
|
int ProcessSteps();
|
2002-10-07 00:36:52 +00:00
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/**
|
2004-09-07 13:17:15 +00:00
|
|
|
* A utility function that returns the nightly time
|
|
|
|
*/
|
2016-05-26 19:58:51 +00:00
|
|
|
struct tm* GetNightlyTime(std::string const& str, bool tomorrowtag);
|
2006-03-09 16:57:43 +00:00
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/**
|
2004-09-07 13:17:15 +00:00
|
|
|
* Is the tomorrow tag set?
|
|
|
|
*/
|
2019-03-18 21:25:50 +00:00
|
|
|
bool GetTomorrowTag() const;
|
2006-03-09 16:57:43 +00:00
|
|
|
|
2002-10-09 02:54:24 +00:00
|
|
|
/**
|
|
|
|
* Try to run tests of the project
|
|
|
|
*/
|
2003-12-15 22:26:00 +00:00
|
|
|
int TestDirectory(bool memcheck);
|
2002-10-07 00:36:52 +00:00
|
|
|
|
2018-06-04 05:48:39 +00:00
|
|
|
/** what is the configuration type, e.g. Debug, Release etc. */
|
2008-02-03 13:57:41 +00:00
|
|
|
std::string const& GetConfigType();
|
2019-03-18 21:25:50 +00:00
|
|
|
cmDuration GetTimeOut() const;
|
|
|
|
void SetTimeOut(cmDuration t);
|
2009-11-30 21:08:11 +00:00
|
|
|
|
2019-03-18 21:25:50 +00:00
|
|
|
cmDuration GetGlobalTimeout() const;
|
2009-11-30 21:08:11 +00:00
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/** how many test to run at the same time */
|
2019-03-18 21:25:50 +00:00
|
|
|
int GetParallelLevel() const;
|
2009-08-26 16:09:06 +00:00
|
|
|
void SetParallelLevel(int);
|
2008-07-03 13:31:33 +00:00
|
|
|
|
2019-03-18 21:25:50 +00:00
|
|
|
unsigned long GetTestLoad() const;
|
2015-06-09 12:50:44 +00:00
|
|
|
void SetTestLoad(unsigned long);
|
|
|
|
|
2003-01-07 04:13:15 +00:00
|
|
|
/**
|
|
|
|
* Check if CTest file exists
|
|
|
|
*/
|
|
|
|
bool CTestFileExists(const std::string& filename);
|
2009-01-12 15:37:55 +00:00
|
|
|
bool AddIfExists(Part part, const char* file);
|
2003-01-07 04:13:15 +00:00
|
|
|
|
2002-10-07 00:36:52 +00:00
|
|
|
/**
|
|
|
|
* Set the cmake test
|
|
|
|
*/
|
2004-07-29 21:15:22 +00:00
|
|
|
bool SetTest(const char*, bool report = true);
|
2002-10-07 00:36:52 +00:00
|
|
|
|
2003-02-11 02:52:01 +00:00
|
|
|
/**
|
|
|
|
* Set the cmake test mode (experimental, nightly, continuous).
|
|
|
|
*/
|
2004-05-07 16:53:35 +00:00
|
|
|
void SetTestModel(int mode);
|
2019-03-18 21:25:50 +00:00
|
|
|
int GetTestModel() const;
|
2006-03-09 16:57:43 +00:00
|
|
|
|
2003-02-11 02:52:01 +00:00
|
|
|
std::string GetTestModelString();
|
2004-01-07 00:13:55 +00:00
|
|
|
static int GetTestModelFromString(const char* str);
|
2004-09-09 12:41:05 +00:00
|
|
|
static std::string CleanString(const std::string& str);
|
2014-02-04 21:06:56 +00:00
|
|
|
std::string GetCTestConfiguration(const std::string& name);
|
2016-05-16 14:34:04 +00:00
|
|
|
void SetCTestConfiguration(const char* name, const char* value,
|
|
|
|
bool suppress = false);
|
2005-06-17 17:04:56 +00:00
|
|
|
void EmptyCTestConfiguration();
|
2006-03-09 16:57:43 +00:00
|
|
|
|
2018-11-28 21:11:14 +00:00
|
|
|
std::string GetSubmitURL();
|
|
|
|
|
2001-08-23 15:12:19 +00:00
|
|
|
/**
|
2004-09-06 16:46:35 +00:00
|
|
|
* constructor and destructor
|
2001-08-23 15:12:19 +00:00
|
|
|
*/
|
2002-12-17 02:19:21 +00:00
|
|
|
cmCTest();
|
2004-09-06 16:46:35 +00:00
|
|
|
~cmCTest();
|
2006-03-09 16:57:43 +00:00
|
|
|
|
2019-02-14 16:29:57 +00:00
|
|
|
cmCTest(const cmCTest&) = delete;
|
|
|
|
cmCTest& operator=(const cmCTest&) = delete;
|
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/** Set the notes files to be created. */
|
2004-01-07 00:13:55 +00:00
|
|
|
void SetNotesFiles(const char* notes);
|
|
|
|
|
2014-02-04 21:06:56 +00:00
|
|
|
void PopulateCustomVector(cmMakefile* mf, const std::string& definition,
|
2016-05-16 14:34:04 +00:00
|
|
|
std::vector<std::string>& vec);
|
|
|
|
void PopulateCustomInteger(cmMakefile* mf, const std::string& def, int& val);
|
2004-01-23 14:44:47 +00:00
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/** Get the current time as string */
|
2005-02-17 15:51:52 +00:00
|
|
|
std::string CurrentTime();
|
2006-03-09 16:57:43 +00:00
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/** tar/gzip and then base 64 encode a file */
|
2016-05-26 19:58:51 +00:00
|
|
|
std::string Base64GzipEncodeFile(std::string const& file);
|
2016-06-21 00:56:43 +00:00
|
|
|
/** base64 encode a file */
|
2016-05-26 19:58:51 +00:00
|
|
|
std::string Base64EncodeFile(std::string const& file);
|
2011-02-18 17:11:51 +00:00
|
|
|
|
2012-08-13 17:42:58 +00:00
|
|
|
/**
|
2011-02-18 17:11:51 +00:00
|
|
|
* Return the time remaining that the script is allowed to run in
|
2006-10-19 14:45:19 +00:00
|
|
|
* seconds if the user has set the variable CTEST_TIME_LIMIT. If that has
|
2017-11-20 20:55:13 +00:00
|
|
|
* not been set it returns a very large duration.
|
2006-10-19 14:45:19 +00:00
|
|
|
*/
|
2017-12-12 20:54:01 +00:00
|
|
|
cmDuration GetRemainingTimeAllowed();
|
2012-08-13 17:42:58 +00:00
|
|
|
|
2017-12-12 20:54:01 +00:00
|
|
|
static cmDuration MaxDuration();
|
2017-12-11 15:40:29 +00:00
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/**
|
|
|
|
* Open file in the output directory and set the stream
|
|
|
|
*/
|
2016-05-16 14:34:04 +00:00
|
|
|
bool OpenOutputFile(const std::string& path, const std::string& name,
|
|
|
|
cmGeneratedFileStream& stream, bool compress = false);
|
2005-02-17 15:51:52 +00:00
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/** Should we only show what we would do? */
|
2004-09-07 13:17:15 +00:00
|
|
|
bool GetShowOnly();
|
2005-06-14 15:42:53 +00:00
|
|
|
|
2018-10-18 18:34:37 +00:00
|
|
|
bool GetOutputAsJson();
|
|
|
|
|
|
|
|
int GetOutputAsJsonVersion();
|
|
|
|
|
2019-03-18 21:25:50 +00:00
|
|
|
bool ShouldUseHTTP10() const;
|
2009-12-11 19:10:37 +00:00
|
|
|
|
2019-03-18 21:25:50 +00:00
|
|
|
bool ShouldPrintLabels() const;
|
2010-08-31 14:41:23 +00:00
|
|
|
|
2009-12-21 17:27:04 +00:00
|
|
|
bool ShouldCompressTestOutput();
|
2011-05-26 18:42:41 +00:00
|
|
|
bool CompressString(std::string& str);
|
2009-12-16 19:50:16 +00:00
|
|
|
|
2019-03-18 21:25:50 +00:00
|
|
|
std::chrono::system_clock::time_point GetStopTime() const;
|
2016-05-26 19:58:51 +00:00
|
|
|
void SetStopTime(std::string const& time);
|
2010-03-16 19:33:55 +00:00
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/** Used for parallel ctest job scheduling */
|
2019-03-18 21:25:50 +00:00
|
|
|
std::string GetScheduleType() const;
|
|
|
|
void SetScheduleType(std::string const& type);
|
2008-09-22 18:04:13 +00:00
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/** The max output width */
|
2008-09-22 18:04:13 +00:00
|
|
|
int GetMaxTestNameWidth() const;
|
2019-03-18 21:25:50 +00:00
|
|
|
void SetMaxTestNameWidth(int w);
|
2008-09-22 18:04:13 +00:00
|
|
|
|
|
|
|
/**
|
2006-03-09 16:57:43 +00:00
|
|
|
* Run a single executable command and put the stdout and stderr
|
2005-06-14 15:42:53 +00:00
|
|
|
* 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
|
2006-03-09 16:57:43 +00:00
|
|
|
* exit code will be stored. If the retVal is not specified and
|
|
|
|
* the program exits with a code other than 0, then the this
|
2005-06-14 15:42:53 +00:00
|
|
|
* function will return false.
|
|
|
|
*/
|
2017-09-13 13:32:47 +00:00
|
|
|
bool RunCommand(std::vector<std::string> const& args, std::string* stdOut,
|
2017-08-22 21:42:36 +00:00
|
|
|
std::string* stdErr, int* retVal = nullptr,
|
2017-11-20 20:55:13 +00:00
|
|
|
const char* dir = nullptr,
|
2017-12-12 20:54:01 +00:00
|
|
|
cmDuration timeout = cmDuration::zero(),
|
2016-11-01 18:36:58 +00:00
|
|
|
Encoding encoding = cmProcessOutput::Auto);
|
2006-03-09 16:57:43 +00:00
|
|
|
|
2016-06-21 00:56:43 +00: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.
|
|
|
|
*/
|
2011-11-18 22:13:07 +00:00
|
|
|
static std::string SafeBuildIdField(const std::string& value);
|
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/** Start CTest XML output file */
|
2015-05-23 22:00:16 +00:00
|
|
|
void StartXML(cmXMLWriter& xml, bool append);
|
2004-09-07 13:17:15 +00:00
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/** End CTest XML output file */
|
2015-05-23 22:00:16 +00:00
|
|
|
void EndXML(cmXMLWriter& xml);
|
2004-09-07 13:17:15 +00:00
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/**
|
|
|
|
* Run command specialized for make and configure. Returns process status
|
|
|
|
* and retVal is return value or exception.
|
|
|
|
*/
|
2019-02-20 18:50:00 +00:00
|
|
|
int RunMakeCommand(const std::string& command, std::string& output,
|
|
|
|
int* retVal, const char* dir, cmDuration timeout,
|
|
|
|
std::ostream& ofs,
|
2016-11-01 18:36:58 +00:00
|
|
|
Encoding encoding = cmProcessOutput::Auto);
|
2004-09-07 13:17:15 +00:00
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/** Return the current tag */
|
2005-02-17 15:51:52 +00:00
|
|
|
std::string GetCurrentTag();
|
2004-09-07 14:37:39 +00:00
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/** Get the path to the build tree */
|
2005-02-17 15:51:52 +00:00
|
|
|
std::string GetBinaryDir();
|
2006-03-09 16:57:43 +00:00
|
|
|
|
2016-06-21 00:56:43 +00: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
|
|
|
|
*/
|
2005-02-17 15:51:52 +00:00
|
|
|
std::string GetShortPathToFile(const char* fname);
|
|
|
|
|
2016-05-16 14:34:04 +00:00
|
|
|
enum
|
|
|
|
{
|
2018-05-03 20:42:09 +00:00
|
|
|
UNKNOWN = -1,
|
|
|
|
EXPERIMENTAL = 0,
|
|
|
|
NIGHTLY = 1,
|
|
|
|
CONTINUOUS = 2,
|
2005-02-17 15:51:52 +00:00
|
|
|
};
|
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/** provide some more detailed info on the return code for ctest */
|
2016-05-16 14:34:04 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
UPDATE_ERRORS = 0x01,
|
2005-02-17 15:51:52 +00:00
|
|
|
CONFIGURE_ERRORS = 0x02,
|
2016-05-16 14:34:04 +00:00
|
|
|
BUILD_ERRORS = 0x04,
|
|
|
|
TEST_ERRORS = 0x08,
|
|
|
|
MEMORY_ERRORS = 0x10,
|
|
|
|
COVERAGE_ERRORS = 0x20,
|
|
|
|
SUBMIT_ERRORS = 0x40
|
2005-02-17 15:51:52 +00:00
|
|
|
};
|
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/** Are we producing XML */
|
2005-02-17 15:51:52 +00:00
|
|
|
bool GetProduceXML();
|
|
|
|
void SetProduceXML(bool v);
|
|
|
|
|
2016-06-21 00:56:43 +00: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-05-16 14:34:04 +00:00
|
|
|
int RunTest(std::vector<const char*> args, std::string* output, int* retVal,
|
2017-12-12 20:54:01 +00:00
|
|
|
std::ostream* logfile, cmDuration testTimeOut,
|
2016-11-01 18:36:58 +00:00
|
|
|
std::vector<std::string>* environment,
|
|
|
|
Encoding encoding = cmProcessOutput::Auto);
|
2004-09-09 12:41:05 +00:00
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/**
|
2005-02-17 20:23:00 +00:00
|
|
|
* Get the handler object
|
|
|
|
*/
|
2019-03-18 21:25:50 +00:00
|
|
|
cmCTestBuildHandler* GetBuildHandler();
|
|
|
|
cmCTestBuildAndTestHandler* GetBuildAndTestHandler();
|
|
|
|
cmCTestCoverageHandler* GetCoverageHandler();
|
|
|
|
cmCTestScriptHandler* GetScriptHandler();
|
|
|
|
cmCTestTestHandler* GetTestHandler();
|
|
|
|
cmCTestUpdateHandler* GetUpdateHandler();
|
|
|
|
cmCTestConfigureHandler* GetConfigureHandler();
|
|
|
|
cmCTestMemCheckHandler* GetMemCheckHandler();
|
|
|
|
cmCTestSubmitHandler* GetSubmitHandler();
|
|
|
|
cmCTestUploadHandler* GetUploadHandler();
|
2005-02-17 20:23:00 +00:00
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/**
|
2005-05-02 18:15:29 +00:00
|
|
|
* Set the CTest variable from CMake variable
|
|
|
|
*/
|
2006-03-09 16:57:43 +00:00
|
|
|
bool SetCTestConfigurationFromCMakeVariable(cmMakefile* mf,
|
2016-05-16 14:34:04 +00:00
|
|
|
const char* dconfig,
|
|
|
|
const std::string& cmake_var,
|
|
|
|
bool suppress = false);
|
2005-05-02 18:15:29 +00:00
|
|
|
|
2009-02-24 20:43:06 +00:00
|
|
|
/** Decode a URL to the original string. */
|
|
|
|
static std::string DecodeURL(const std::string&);
|
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/**
|
|
|
|
* Should ctect configuration be updated. When using new style ctest
|
|
|
|
* script, this should be true.
|
|
|
|
*/
|
2019-03-18 21:25:50 +00:00
|
|
|
void SetSuppressUpdatingCTestConfiguration(bool val);
|
2005-05-08 17:47:20 +00:00
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/**
|
|
|
|
* Add overwrite to ctest configuration.
|
|
|
|
*
|
|
|
|
* The format is key=value
|
|
|
|
*/
|
2014-02-04 02:20:33 +00:00
|
|
|
void AddCTestConfigurationOverwrite(const std::string& encstr);
|
2005-07-18 15:46:45 +00:00
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/** Create XML file that contains all the notes specified */
|
2019-03-18 21:25:50 +00:00
|
|
|
int GenerateNotesFile(std::vector<std::string> const& files);
|
2005-05-31 21:32:40 +00:00
|
|
|
|
2018-10-04 15:34:27 +00:00
|
|
|
/** Create XML file to indicate that build is complete */
|
|
|
|
int GenerateDoneFile();
|
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/** Submit extra files to the server */
|
2005-07-18 16:53:48 +00:00
|
|
|
bool SubmitExtraFiles(const char* files);
|
2019-03-18 21:25:50 +00:00
|
|
|
bool SubmitExtraFiles(std::vector<std::string> const& files);
|
2005-07-18 16:53:48 +00:00
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/** Set the output log file name */
|
2005-05-31 21:32:40 +00:00
|
|
|
void SetOutputLogFileName(const char* name);
|
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/** Set the visual studio or Xcode config type */
|
2006-10-13 21:10:48 +00:00
|
|
|
void SetConfigType(const char* ct);
|
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/** Various log types */
|
2016-05-16 14:34:04 +00:00
|
|
|
enum
|
|
|
|
{
|
2005-05-31 21:32:40 +00:00
|
|
|
DEBUG = 0,
|
|
|
|
OUTPUT,
|
|
|
|
HANDLER_OUTPUT,
|
2015-07-03 20:52:23 +00:00
|
|
|
HANDLER_PROGRESS_OUTPUT,
|
2018-09-23 04:47:27 +00:00
|
|
|
HANDLER_TEST_PROGRESS_OUTPUT,
|
2005-05-31 21:32:40 +00:00
|
|
|
HANDLER_VERBOSE_OUTPUT,
|
|
|
|
WARNING,
|
2005-05-31 22:40:43 +00:00
|
|
|
ERROR_MESSAGE,
|
2005-05-31 21:32:40 +00:00
|
|
|
OTHER
|
|
|
|
};
|
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/** Add log to the output */
|
2015-02-16 20:24:55 +00:00
|
|
|
void Log(int logType, const char* file, int line, const char* msg,
|
2016-05-16 14:34:04 +00:00
|
|
|
bool suppress = false);
|
2005-05-31 21:32:40 +00:00
|
|
|
|
2018-11-07 15:33:28 +00:00
|
|
|
/** Color values */
|
|
|
|
enum class Color
|
|
|
|
{
|
|
|
|
CLEAR_COLOR = 0,
|
|
|
|
RED = 31,
|
|
|
|
GREEN = 32,
|
|
|
|
YELLOW = 33,
|
|
|
|
BLUE = 34
|
|
|
|
};
|
|
|
|
|
|
|
|
/** Get color code characters for a specific color */
|
|
|
|
std::string GetColorCode(Color color) const;
|
|
|
|
|
2018-10-04 15:34:27 +00:00
|
|
|
/** The Build ID is assigned by CDash */
|
2019-03-18 21:25:50 +00:00
|
|
|
void SetBuildID(const std::string& id);
|
|
|
|
std::string GetBuildID() const;
|
2018-10-04 15:34:27 +00:00
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/** Add file to be submitted */
|
2009-01-12 15:37:55 +00:00
|
|
|
void AddSubmitFile(Part part, const char* name);
|
2019-03-18 21:25:50 +00:00
|
|
|
std::vector<std::string> const& GetSubmitFiles(Part part) const;
|
|
|
|
void ClearSubmitFiles(Part part);
|
2005-06-23 17:04:18 +00:00
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/**
|
|
|
|
* Read the custom configuration files and apply them to the current ctest
|
|
|
|
*/
|
2007-06-12 13:40:36 +00:00
|
|
|
int ReadCustomConfigurationFileTree(const char* dir, cmMakefile* mf);
|
2006-03-28 20:20:03 +00:00
|
|
|
|
2019-03-18 21:25:50 +00:00
|
|
|
std::vector<std::string>& GetInitialCommandLineArguments();
|
2006-04-04 17:04:28 +00:00
|
|
|
|
2019-08-20 14:55:12 +00:00
|
|
|
/** Set the group to submit to */
|
|
|
|
void SetSpecificGroup(const char* group);
|
|
|
|
const char* GetSpecificGroup();
|
2006-04-28 15:59:31 +00:00
|
|
|
|
2019-03-18 21:25:50 +00:00
|
|
|
void SetFailover(bool failover);
|
|
|
|
bool GetFailover() const;
|
2009-08-27 14:37:30 +00:00
|
|
|
|
2019-03-18 21:25:50 +00:00
|
|
|
bool GetTestProgressOutput() const;
|
2018-09-23 04:47:27 +00:00
|
|
|
|
2019-03-18 21:25:50 +00:00
|
|
|
bool GetVerbose() const;
|
|
|
|
bool GetExtraVerbose() const;
|
2009-01-05 19:14:10 +00:00
|
|
|
|
|
|
|
/** Direct process output to given streams. */
|
2019-03-18 21:25:50 +00:00
|
|
|
void SetStreams(std::ostream* out, std::ostream* err);
|
|
|
|
|
2015-05-23 22:00:16 +00:00
|
|
|
void AddSiteProperties(cmXMLWriter& xml);
|
2017-06-23 17:03:05 +00:00
|
|
|
|
2019-03-18 21:25:50 +00:00
|
|
|
bool GetLabelSummary() const;
|
|
|
|
bool GetSubprojectSummary() const;
|
2010-03-01 16:00:23 +00:00
|
|
|
|
|
|
|
std::string GetCostDataFile();
|
2012-06-24 09:33:32 +00:00
|
|
|
|
2019-03-18 21:25:50 +00:00
|
|
|
bool GetOutputTestOutputOnTestFailure() const;
|
|
|
|
|
2019-03-18 21:25:50 +00:00
|
|
|
const std::map<std::string, std::string>& GetDefinitions() const;
|
2016-06-21 00:56:43 +00:00
|
|
|
|
|
|
|
/** Return the number of times a test should be run */
|
2019-11-07 16:21:03 +00:00
|
|
|
int GetRepeatCount() const;
|
2016-06-21 00:56:43 +00:00
|
|
|
|
2019-11-07 16:21:03 +00:00
|
|
|
enum class Repeat
|
2019-10-29 18:45:21 +00:00
|
|
|
{
|
|
|
|
Never,
|
|
|
|
UntilFail,
|
|
|
|
UntilPass,
|
2019-10-29 18:21:38 +00:00
|
|
|
AfterTimeout,
|
2019-10-29 18:45:21 +00:00
|
|
|
};
|
2019-11-07 16:21:03 +00:00
|
|
|
Repeat GetRepeatMode() const;
|
2016-06-21 00:56:43 +00:00
|
|
|
|
2017-06-27 19:23:18 +00:00
|
|
|
void GenerateSubprojectsOutput(cmXMLWriter& xml);
|
|
|
|
std::vector<std::string> GetLabelsForSubprojects();
|
|
|
|
|
2018-01-25 19:04:12 +00:00
|
|
|
void SetRunCurrentScript(bool value);
|
|
|
|
|
2005-02-17 20:23:00 +00:00
|
|
|
private:
|
2005-02-17 15:51:52 +00:00
|
|
|
int GenerateNotesFile(const char* files);
|
|
|
|
|
2004-05-07 16:53:35 +00:00
|
|
|
void BlockTestErrorDiagnostics();
|
2006-03-09 16:57:43 +00:00
|
|
|
|
2009-11-24 13:58:48 +00:00
|
|
|
/**
|
2009-12-29 19:38:31 +00: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
|
2009-11-24 13:58:48 +00:00
|
|
|
* 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.
|
|
|
|
*/
|
2009-12-29 19:38:31 +00:00
|
|
|
int Initialize(const char* binary_dir, cmCTestStartCommand* command);
|
2004-03-14 16:23:57 +00:00
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/** parse the option after -D and convert it into the appropriate steps */
|
2016-05-16 14:34:04 +00:00
|
|
|
bool AddTestsForDashboardType(std::string& targ);
|
2006-10-12 16:51:27 +00:00
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/** read as "emit an error message for an unknown -D value" */
|
2016-05-16 14:34:04 +00:00
|
|
|
void ErrorMessageUnknownDashDValue(std::string& val);
|
2012-06-24 09:33:32 +00:00
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/** add a variable definition from a command line -D value */
|
2016-05-16 14:34:04 +00:00
|
|
|
bool AddVariableDefinition(const std::string& arg);
|
2012-06-24 10:16:32 +00:00
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/** parse and process most common command line arguments */
|
2016-05-16 14:34:04 +00:00
|
|
|
bool HandleCommandLineArguments(size_t& i, std::vector<std::string>& args,
|
2015-03-05 21:51:10 +00:00
|
|
|
std::string& errormsg);
|
2006-10-12 16:51:27 +00:00
|
|
|
|
2018-11-07 15:33:28 +00:00
|
|
|
#if !defined(_WIN32)
|
2018-09-23 04:47:27 +00:00
|
|
|
/** returns true iff the console supports progress output */
|
2018-11-07 15:33:28 +00:00
|
|
|
static bool ConsoleIsNotDumb();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/** returns true iff the console supports progress output */
|
|
|
|
static bool ProgressOutputSupportedByConsole();
|
|
|
|
|
|
|
|
/** returns true iff the console supports colored output */
|
|
|
|
static bool ColoredOutputSupportedByConsole();
|
2018-09-23 04:47:27 +00:00
|
|
|
|
2018-06-04 05:48:39 +00:00
|
|
|
/** handle the -S -SP and -SR arguments */
|
2016-05-16 14:34:04 +00:00
|
|
|
void HandleScriptArguments(size_t& i, std::vector<std::string>& args,
|
|
|
|
bool& SRArgumentSpecified);
|
2006-10-12 16:51:27 +00:00
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/** Reread the configuration file */
|
2005-02-17 20:23:00 +00:00
|
|
|
bool UpdateCTestConfiguration();
|
2004-01-07 00:13:55 +00:00
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/** Create note from files. */
|
2019-03-18 21:25:50 +00:00
|
|
|
int GenerateCTestNotesOutput(cmXMLWriter& xml,
|
|
|
|
std::vector<std::string> const& files);
|
2003-12-26 20:02:26 +00:00
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/** Check if the argument is the one specified */
|
2006-03-09 16:57:43 +00:00
|
|
|
bool CheckArgument(const std::string& arg, const char* varg1,
|
2017-08-22 21:42:36 +00:00
|
|
|
const char* varg2 = nullptr);
|
2005-07-18 15:46:45 +00:00
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/** Output errors from a test */
|
2016-05-16 14:34:04 +00:00
|
|
|
void OutputTestErrors(std::vector<char> const& process_output);
|
2009-01-18 18:03:32 +00:00
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/** Handle the --test-action command line argument */
|
2016-06-21 00:37:55 +00:00
|
|
|
bool HandleTestActionArgument(const char* ctestExec, size_t& i,
|
|
|
|
const std::vector<std::string>& args);
|
|
|
|
|
2016-06-21 00:56:43 +00:00
|
|
|
/** Handle the --test-model command line argument */
|
2016-06-21 00:37:55 +00:00
|
|
|
bool HandleTestModelArgument(const char* ctestExec, size_t& i,
|
|
|
|
const std::vector<std::string>& args);
|
|
|
|
|
2016-06-28 22:04:07 +00:00
|
|
|
int RunCMakeAndTest(std::string* output);
|
|
|
|
int ExecuteTests();
|
|
|
|
|
2019-03-18 21:25:50 +00:00
|
|
|
struct Private;
|
|
|
|
std::unique_ptr<Private> Impl;
|
2001-08-23 15:12:19 +00:00
|
|
|
};
|
|
|
|
|
2005-05-31 21:32:40 +00:00
|
|
|
class cmCTestLogWrite
|
|
|
|
{
|
|
|
|
public:
|
2006-03-09 16:57:43 +00:00
|
|
|
cmCTestLogWrite(const char* data, size_t length)
|
2016-05-16 14:34:04 +00:00
|
|
|
: Data(data)
|
|
|
|
, Length(length)
|
|
|
|
{
|
|
|
|
}
|
2005-05-31 21:32:40 +00:00
|
|
|
|
|
|
|
const char* Data;
|
|
|
|
size_t Length;
|
|
|
|
};
|
|
|
|
|
2016-05-16 14:34:04 +00:00
|
|
|
inline std::ostream& operator<<(std::ostream& os, const cmCTestLogWrite& c)
|
2005-05-31 21:32:40 +00:00
|
|
|
{
|
2016-05-16 14:34:04 +00:00
|
|
|
if (!c.Length) {
|
2006-02-28 21:17:27 +00:00
|
|
|
return os;
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2005-05-31 21:32:40 +00:00
|
|
|
os.write(c.Data, c.Length);
|
|
|
|
os.flush();
|
|
|
|
return os;
|
|
|
|
}
|
|
|
|
|
2017-02-17 22:27:34 +00: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)
|
|
|
|
|
2003-02-11 02:52:01 +00:00
|
|
|
#endif
|