2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2001-08-23 19:12:19 +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.
|
2001-08-23 19:12:19 +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.
|
|
|
|
============================================================================*/
|
2001-08-23 19:12:19 +04:00
|
|
|
|
2003-02-11 05:52:01 +03:00
|
|
|
#ifndef cmCTest_h
|
|
|
|
#define cmCTest_h
|
|
|
|
|
2001-08-23 19:12:19 +04:00
|
|
|
#include "cmStandardIncludes.h"
|
2004-03-14 19:23:57 +03:00
|
|
|
#include "cmListFileCache.h"
|
2004-09-07 20:54:15 +04:00
|
|
|
#include <time.h>
|
2002-05-22 17:47:41 +04:00
|
|
|
|
2005-02-22 17:12:10 +03:00
|
|
|
class cmake;
|
2004-01-26 21:57:26 +03:00
|
|
|
class cmMakefile;
|
2005-01-27 23:54:47 +03:00
|
|
|
class cmCTestGenericHandler;
|
2005-01-27 18:15:01 +03:00
|
|
|
class cmGeneratedFileStream;
|
2005-06-16 21:18:21 +04:00
|
|
|
class cmCTestCommand;
|
2009-01-09 20:05:23 +03:00
|
|
|
class cmCTestScriptHandler;
|
2009-11-24 16:58:59 +03:00
|
|
|
class cmCTestStartCommand;
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2005-06-01 01:32:40 +04:00
|
|
|
#define cmCTestLog(ctSelf, logType, msg) \
|
|
|
|
do { \
|
|
|
|
cmOStringStream cmCTestLog_msg; \
|
|
|
|
cmCTestLog_msg << msg; \
|
2006-03-09 19:57:43 +03:00
|
|
|
(ctSelf)->Log(cmCTest::logType, __FILE__, __LINE__,\
|
|
|
|
cmCTestLog_msg.str().c_str());\
|
2005-06-01 01:32:40 +04:00
|
|
|
} while ( 0 )
|
|
|
|
|
|
|
|
#ifdef cerr
|
|
|
|
# undef cerr
|
|
|
|
#endif
|
|
|
|
#define cerr no_cerr_use_cmCTestLog
|
|
|
|
|
|
|
|
#ifdef cout
|
|
|
|
# undef cout
|
|
|
|
#endif
|
|
|
|
#define cout no_cout_use_cmCTestLog
|
|
|
|
|
2002-12-17 05:19:21 +03:00
|
|
|
class cmCTest
|
2001-08-23 19:12:19 +04:00
|
|
|
{
|
2009-08-19 16:58:36 +04:00
|
|
|
friend class cmCTestRunTest;
|
2009-09-02 18:08:40 +04:00
|
|
|
friend class cmCTestMultiProcessHandler;
|
2001-08-23 19:12:19 +04:00
|
|
|
public:
|
2009-01-12 18:37:25 +03:00
|
|
|
/** Enumerate parts of the testing and submission process. */
|
|
|
|
enum Part
|
|
|
|
{
|
|
|
|
PartStart,
|
|
|
|
PartUpdate,
|
|
|
|
PartConfigure,
|
|
|
|
PartBuild,
|
|
|
|
PartTest,
|
|
|
|
PartCoverage,
|
|
|
|
PartMemCheck,
|
|
|
|
PartSubmit,
|
|
|
|
PartNotes,
|
2009-01-12 18:37:55 +03:00
|
|
|
PartExtraFiles,
|
2011-02-18 20:11:51 +03:00
|
|
|
PartUpload,
|
2009-01-12 18:37:25 +03:00
|
|
|
PartCount // Update names in constructor when adding a part
|
|
|
|
};
|
|
|
|
|
|
|
|
/** Representation of one part. */
|
|
|
|
struct PartInfo
|
|
|
|
{
|
|
|
|
PartInfo(): Enabled(false) {}
|
|
|
|
|
|
|
|
void SetName(const char* name) { this->Name = name; }
|
|
|
|
const char* GetName() const { return this->Name.c_str(); }
|
|
|
|
|
|
|
|
void Enable() { this->Enabled = true; }
|
|
|
|
operator bool() const { return this->Enabled; }
|
2009-01-12 18:37:55 +03:00
|
|
|
|
|
|
|
std::vector<std::string> SubmitFiles;
|
2009-01-12 18:37:25 +03:00
|
|
|
private:
|
|
|
|
bool Enabled;
|
|
|
|
std::string Name;
|
|
|
|
};
|
2009-12-22 22:37:06 +03:00
|
|
|
#ifdef CMAKE_BUILD_WITH_CMAKE
|
|
|
|
enum HTTPMethod {
|
|
|
|
HTTP_GET,
|
2009-12-30 19:10:42 +03:00
|
|
|
HTTP_POST,
|
|
|
|
HTTP_PUT
|
2009-12-22 22:37:06 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Perform an HTTP request.
|
|
|
|
*/
|
|
|
|
static int HTTPRequest(std::string url, HTTPMethod method,
|
|
|
|
std::string& response,
|
2009-12-30 19:10:42 +03:00
|
|
|
std::string fields = "",
|
|
|
|
std::string putFile = "", int timeout = 0);
|
2009-12-22 22:37:06 +03:00
|
|
|
#endif
|
2009-01-12 18:37:25 +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);
|
|
|
|
|
2006-03-10 23:03:09 +03:00
|
|
|
typedef std::vector<cmStdString> VectorOfStrings;
|
|
|
|
typedef std::set<cmStdString> SetOfStrings;
|
2003-12-16 01:26:00 +03:00
|
|
|
|
2004-01-07 19:24:22 +03:00
|
|
|
///! Process Command line arguments
|
2006-10-12 20:51:27 +04:00
|
|
|
int Run(std::vector<std::string> &, std::string* output = 0);
|
2006-03-09 19:57:43 +03:00
|
|
|
|
2002-10-07 04:36:52 +04:00
|
|
|
/**
|
|
|
|
* Initialize and finalize testing
|
|
|
|
*/
|
2009-11-24 16:58:59 +03:00
|
|
|
bool InitializeFromCommand(cmCTestStartCommand* command);
|
2002-10-07 04:36:52 +04:00
|
|
|
void Finalize();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Process the tests. This is the main routine. The execution of the
|
|
|
|
* tests should look like this:
|
|
|
|
*
|
|
|
|
* ctest foo;
|
|
|
|
* foo.Initialize();
|
|
|
|
* // Set some things on foo
|
|
|
|
* foo.ProcessTests();
|
|
|
|
* foo.Finalize();
|
|
|
|
*/
|
|
|
|
int ProcessTests();
|
|
|
|
|
2004-09-07 17:17:15 +04:00
|
|
|
/*
|
|
|
|
* A utility function that returns the nightly time
|
|
|
|
*/
|
2006-03-09 19:57:43 +03:00
|
|
|
struct tm* GetNightlyTime(std::string str,
|
2005-06-01 01:32:40 +04:00
|
|
|
bool tomorrowtag);
|
2006-03-09 19:57:43 +03:00
|
|
|
|
2004-09-07 17:17:15 +04:00
|
|
|
/*
|
|
|
|
* Is the tomorrow tag set?
|
|
|
|
*/
|
2006-03-15 19:02:08 +03:00
|
|
|
bool GetTomorrowTag() { return this->TomorrowTag; };
|
2006-03-09 19:57:43 +03:00
|
|
|
|
2002-10-09 06:54:24 +04:00
|
|
|
/**
|
|
|
|
* Try to run tests of the project
|
|
|
|
*/
|
2003-12-16 01:26:00 +03:00
|
|
|
int TestDirectory(bool memcheck);
|
2002-10-07 04:36:52 +04:00
|
|
|
|
2004-09-09 16:41:05 +04:00
|
|
|
///! what is the configuraiton type, e.g. Debug, Release etc.
|
2008-02-03 16:57:41 +03:00
|
|
|
std::string const& GetConfigType();
|
2006-03-15 19:02:08 +03:00
|
|
|
double GetTimeOut() { return this->TimeOut; }
|
|
|
|
void SetTimeOut(double t) { this->TimeOut = t; }
|
2009-12-01 00:08:11 +03:00
|
|
|
|
|
|
|
double GetGlobalTimeout() { return this->GlobalTimeout; }
|
|
|
|
|
2008-07-03 17:31:33 +04:00
|
|
|
// how many test to run at the same time
|
|
|
|
int GetParallelLevel() { return this->ParallelLevel; }
|
2009-08-26 20:09:06 +04:00
|
|
|
void SetParallelLevel(int);
|
2008-07-03 17:31:33 +04:00
|
|
|
|
2003-01-07 07:13:15 +03:00
|
|
|
/**
|
|
|
|
* Check if CTest file exists
|
|
|
|
*/
|
|
|
|
bool CTestFileExists(const std::string& filename);
|
2009-01-12 18:37:55 +03:00
|
|
|
bool AddIfExists(Part part, const char* file);
|
2003-01-07 07:13:15 +03:00
|
|
|
|
2002-10-07 04:36:52 +04:00
|
|
|
/**
|
|
|
|
* Set the cmake test
|
|
|
|
*/
|
2004-07-30 01:15:22 +04:00
|
|
|
bool SetTest(const char*, bool report = true);
|
2002-10-07 04:36:52 +04:00
|
|
|
|
2003-02-11 05:52:01 +03:00
|
|
|
/**
|
|
|
|
* Set the cmake test mode (experimental, nightly, continuous).
|
|
|
|
*/
|
2004-05-07 20:53:35 +04:00
|
|
|
void SetTestModel(int mode);
|
2006-03-15 19:02:08 +03:00
|
|
|
int GetTestModel() { return this->TestModel; };
|
2006-03-09 19:57:43 +03:00
|
|
|
|
2003-02-11 05:52:01 +03:00
|
|
|
std::string GetTestModelString();
|
2004-01-07 03:13:55 +03:00
|
|
|
static int GetTestModelFromString(const char* str);
|
2004-09-09 16:41:05 +04:00
|
|
|
static std::string CleanString(const std::string& str);
|
2005-05-03 17:40:16 +04:00
|
|
|
std::string GetCTestConfiguration(const char *name);
|
|
|
|
void SetCTestConfiguration(const char *name, const char* value);
|
2005-06-17 21:04:56 +04:00
|
|
|
void EmptyCTestConfiguration();
|
2006-03-09 19:57:43 +03:00
|
|
|
|
2001-08-23 19:12:19 +04:00
|
|
|
/**
|
2004-09-06 20:46:35 +04:00
|
|
|
* constructor and destructor
|
2001-08-23 19:12:19 +04:00
|
|
|
*/
|
2002-12-17 05:19:21 +03:00
|
|
|
cmCTest();
|
2004-09-06 20:46:35 +04:00
|
|
|
~cmCTest();
|
2006-03-09 19:57:43 +03:00
|
|
|
|
2004-01-07 03:13:55 +03:00
|
|
|
//! Set the notes files to be created.
|
|
|
|
void SetNotesFiles(const char* notes);
|
|
|
|
|
2006-03-29 21:01:24 +04:00
|
|
|
void PopulateCustomVector(cmMakefile* mf, const char* definition,
|
|
|
|
VectorOfStrings& vec);
|
|
|
|
void PopulateCustomInteger(cmMakefile* mf, const char* def,
|
2006-03-09 19:57:43 +03:00
|
|
|
int& val);
|
2004-01-23 17:44:47 +03:00
|
|
|
|
2005-02-17 18:51:52 +03:00
|
|
|
///! Get the current time as string
|
|
|
|
std::string CurrentTime();
|
2006-03-09 19:57:43 +03:00
|
|
|
|
2011-02-18 20:11:51 +03:00
|
|
|
//! tar/gzip and then base 64 encode a file
|
|
|
|
std::string Base64GzipEncodeFile(std::string file);
|
2011-02-28 23:26:24 +03:00
|
|
|
//! base64 encode a file
|
|
|
|
std::string Base64EncodeFile(std::string file);
|
2011-02-18 20:11:51 +03:00
|
|
|
|
2006-10-19 18:45:19 +04:00
|
|
|
/**
|
2011-02-18 20:11:51 +03:00
|
|
|
* Return the time remaining that the script is allowed to run in
|
2006-10-19 18:45:19 +04:00
|
|
|
* seconds if the user has set the variable CTEST_TIME_LIMIT. If that has
|
|
|
|
* not been set it returns 1e7 seconds
|
|
|
|
*/
|
|
|
|
double GetRemainingTimeAllowed();
|
|
|
|
|
2005-02-17 18:51:52 +03:00
|
|
|
///! Open file in the output directory and set the stream
|
2006-03-09 19:57:43 +03:00
|
|
|
bool OpenOutputFile(const std::string& path,
|
2005-01-27 18:15:01 +03:00
|
|
|
const std::string& name,
|
|
|
|
cmGeneratedFileStream& stream,
|
|
|
|
bool compress = false);
|
2005-02-17 18:51:52 +03:00
|
|
|
|
2004-09-07 17:17:15 +04:00
|
|
|
///! Should we only show what we would do?
|
|
|
|
bool GetShowOnly();
|
2005-06-14 19:42:53 +04:00
|
|
|
|
2009-12-11 22:10:37 +03:00
|
|
|
bool ShouldUseHTTP10() { return this->UseHTTP10; }
|
|
|
|
|
2010-08-31 18:41:23 +04:00
|
|
|
bool ShouldPrintLabels() { return this->PrintLabels; }
|
|
|
|
|
2009-12-21 20:27:04 +03:00
|
|
|
bool ShouldCompressTestOutput();
|
2009-12-16 22:50:16 +03:00
|
|
|
|
2009-12-21 23:47:29 +03:00
|
|
|
std::string GetCDashVersion();
|
|
|
|
|
2010-03-16 22:33:55 +03:00
|
|
|
std::string GetStopTime() { return this->StopTime; }
|
|
|
|
void SetStopTime(std::string time);
|
|
|
|
|
2009-10-29 22:30:12 +03:00
|
|
|
//Used for parallel ctest job scheduling
|
|
|
|
std::string GetScheduleType() { return this->ScheduleType; }
|
|
|
|
void SetScheduleType(std::string type) { this->ScheduleType = type; }
|
2008-09-22 22:04:13 +04:00
|
|
|
|
|
|
|
///! The max output width
|
|
|
|
int GetMaxTestNameWidth() const;
|
2009-01-09 20:32:52 +03:00
|
|
|
void SetMaxTestNameWidth(int w) { this->MaxTestNameWidth = w;}
|
2008-09-22 22:04:13 +04:00
|
|
|
|
|
|
|
/**
|
2006-03-09 19:57:43 +03:00
|
|
|
* Run a single executable command and put the stdout and stderr
|
2005-06-14 19:42:53 +04: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 19:57:43 +03: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 19:42:53 +04:00
|
|
|
* 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
|
2006-03-09 19:57:43 +03:00
|
|
|
* escaped for this to with spaces.
|
2005-06-14 19:42:53 +04:00
|
|
|
*/
|
|
|
|
bool RunCommand(const char* command,
|
|
|
|
std::string* stdOut, std::string* stdErr,
|
|
|
|
int* retVal = 0, const char* dir = 0, double timeout = 0.0);
|
2006-03-09 19:57:43 +03:00
|
|
|
|
2004-09-07 17:17:15 +04:00
|
|
|
//! Start CTest XML output file
|
2009-01-12 17:11:29 +03:00
|
|
|
void StartXML(std::ostream& ostr, bool append);
|
2004-09-07 17:17:15 +04:00
|
|
|
|
|
|
|
//! End CTest XML output file
|
|
|
|
void EndXML(std::ostream& ostr);
|
|
|
|
|
|
|
|
//! Run command specialized for make and configure. Returns process status
|
|
|
|
// and retVal is return value or exception.
|
|
|
|
int RunMakeCommand(const char* command, std::string* output,
|
2006-03-09 19:57:43 +03:00
|
|
|
int* retVal, const char* dir, int timeout,
|
2004-09-07 17:17:15 +04:00
|
|
|
std::ofstream& ofs);
|
|
|
|
|
2005-02-17 18:51:52 +03:00
|
|
|
/*
|
|
|
|
* return the current tag
|
|
|
|
*/
|
|
|
|
std::string GetCurrentTag();
|
2004-09-07 18:37:39 +04:00
|
|
|
|
2005-02-17 18:51:52 +03:00
|
|
|
//! Get the path to the build tree
|
|
|
|
std::string GetBinaryDir();
|
2006-03-09 19:57:43 +03:00
|
|
|
|
2005-02-17 18:51:52 +03: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);
|
|
|
|
|
|
|
|
//! Get the path to CTest
|
2006-03-15 19:02:08 +03:00
|
|
|
const char* GetCTestExecutable() { return this->CTestSelf.c_str(); }
|
|
|
|
const char* GetCMakeExecutable() { return this->CMakeSelf.c_str(); }
|
2005-02-17 18:51:52 +03:00
|
|
|
|
|
|
|
enum {
|
|
|
|
EXPERIMENTAL,
|
|
|
|
NIGHTLY,
|
|
|
|
CONTINUOUS
|
|
|
|
};
|
|
|
|
|
|
|
|
// provide some more detailed info on the return code for ctest
|
|
|
|
enum {
|
2005-05-03 16:17:39 +04:00
|
|
|
UPDATE_ERRORS = 0x01,
|
2005-02-17 18:51:52 +03:00
|
|
|
CONFIGURE_ERRORS = 0x02,
|
2005-05-03 16:17:39 +04:00
|
|
|
BUILD_ERRORS = 0x04,
|
|
|
|
TEST_ERRORS = 0x08,
|
|
|
|
MEMORY_ERRORS = 0x10,
|
|
|
|
COVERAGE_ERRORS = 0x20,
|
|
|
|
SUBMIT_ERRORS = 0x40
|
2005-02-17 18:51:52 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
///! Are we producing XML
|
|
|
|
bool GetProduceXML();
|
|
|
|
void SetProduceXML(bool v);
|
|
|
|
|
2004-09-09 16:41:05 +04:00
|
|
|
//! Run command specialized for tests. Returns process status and retVal is
|
2008-11-26 22:38:43 +03:00
|
|
|
// 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.
|
2006-03-09 19:57:43 +03:00
|
|
|
int RunTest(std::vector<const char*> args, std::string* output, int *retVal,
|
2008-11-28 18:50:20 +03:00
|
|
|
std::ostream* logfile, double testTimeOut,
|
|
|
|
std::vector<std::string>* environment);
|
2004-09-09 16:41:05 +04:00
|
|
|
|
2005-02-17 23:23:00 +03:00
|
|
|
/**
|
2006-03-09 19:57:43 +03:00
|
|
|
* Execute handler and return its result. If the handler fails, it returns
|
|
|
|
* negative value.
|
2005-02-17 23:23:00 +03:00
|
|
|
*/
|
|
|
|
int ExecuteHandler(const char* handler);
|
2004-10-01 20:21:16 +04:00
|
|
|
|
2006-03-09 19:57:43 +03:00
|
|
|
/*
|
2005-02-17 23:23:00 +03:00
|
|
|
* Get the handler object
|
|
|
|
*/
|
|
|
|
cmCTestGenericHandler* GetHandler(const char* handler);
|
2005-06-23 21:04:18 +04:00
|
|
|
cmCTestGenericHandler* GetInitializedHandler(const char* handler);
|
2005-02-17 23:23:00 +03:00
|
|
|
|
2005-05-02 22:15:29 +04:00
|
|
|
/*
|
|
|
|
* Set the CTest variable from CMake variable
|
|
|
|
*/
|
2006-03-09 19:57:43 +03:00
|
|
|
bool SetCTestConfigurationFromCMakeVariable(cmMakefile* mf,
|
|
|
|
const char* dconfig, const char* cmake_var);
|
2005-05-02 22:15:29 +04:00
|
|
|
|
2005-05-03 16:17:39 +04:00
|
|
|
//! Make string safe to be send as an URL
|
|
|
|
static std::string MakeURLSafe(const std::string&);
|
2005-05-08 21:47:20 +04:00
|
|
|
|
2009-02-24 23:43:06 +03:00
|
|
|
/** Decode a URL to the original string. */
|
|
|
|
static std::string DecodeURL(const std::string&);
|
|
|
|
|
2006-03-09 19:57:43 +03:00
|
|
|
//! Should ctect configuration be updated. When using new style ctest
|
|
|
|
// script, this should be true.
|
2005-05-08 21:47:20 +04:00
|
|
|
void SetSuppressUpdatingCTestConfiguration(bool val)
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->SuppressUpdatingCTestConfiguration = val;
|
2005-05-08 21:47:20 +04:00
|
|
|
}
|
|
|
|
|
2005-07-18 19:46:45 +04:00
|
|
|
//! Add overwrite to ctest configuration.
|
|
|
|
// The format is key=value
|
|
|
|
void AddCTestConfigurationOverwrite(const char* encstr);
|
|
|
|
|
2005-05-08 21:47:20 +04:00
|
|
|
//! Create XML file that contains all the notes specified
|
|
|
|
int GenerateNotesFile(const std::vector<cmStdString> &files);
|
2005-06-01 01:32:40 +04:00
|
|
|
|
2005-07-18 20:53:48 +04:00
|
|
|
//! Submit extra files to the server
|
|
|
|
bool SubmitExtraFiles(const char* files);
|
|
|
|
bool SubmitExtraFiles(const std::vector<cmStdString> &files);
|
|
|
|
|
2005-06-01 01:32:40 +04:00
|
|
|
//! Set the output log file name
|
|
|
|
void SetOutputLogFileName(const char* name);
|
|
|
|
|
2006-10-14 01:10:48 +04:00
|
|
|
//! Set the visual studio or Xcode config type
|
|
|
|
void SetConfigType(const char* ct);
|
|
|
|
|
2005-06-01 01:32:40 +04:00
|
|
|
//! Various log types
|
|
|
|
enum {
|
|
|
|
DEBUG = 0,
|
|
|
|
OUTPUT,
|
|
|
|
HANDLER_OUTPUT,
|
|
|
|
HANDLER_VERBOSE_OUTPUT,
|
|
|
|
WARNING,
|
2005-06-01 02:40:43 +04:00
|
|
|
ERROR_MESSAGE,
|
2005-06-01 01:32:40 +04:00
|
|
|
OTHER
|
|
|
|
};
|
|
|
|
|
|
|
|
//! Add log to the output
|
2005-06-16 21:18:21 +04:00
|
|
|
void Log(int logType, const char* file, int line, const char* msg);
|
2005-06-01 01:32:40 +04:00
|
|
|
|
2005-06-23 21:04:18 +04:00
|
|
|
//! Get the version of dart server
|
2006-03-15 19:02:08 +03:00
|
|
|
int GetDartVersion() { return this->DartVersion; }
|
2005-06-23 21:04:18 +04:00
|
|
|
|
|
|
|
//! Add file to be submitted
|
2009-01-12 18:37:55 +03:00
|
|
|
void AddSubmitFile(Part part, const char* name);
|
|
|
|
std::vector<std::string> const& GetSubmitFiles(Part part)
|
|
|
|
{ return this->Parts[part].SubmitFiles; }
|
2009-03-11 20:31:33 +03:00
|
|
|
void ClearSubmitFiles(Part part) { this->Parts[part].SubmitFiles.clear(); }
|
2005-06-23 21:04:18 +04:00
|
|
|
|
2006-03-29 00:20:03 +04:00
|
|
|
//! Read the custom configuration files and apply them to the current ctest
|
2007-06-12 17:40:36 +04:00
|
|
|
int ReadCustomConfigurationFileTree(const char* dir, cmMakefile* mf);
|
2006-03-29 00:20:03 +04:00
|
|
|
|
2006-04-09 15:45:18 +04:00
|
|
|
std::vector<cmStdString> &GetInitialCommandLineArguments()
|
2006-04-04 21:04:28 +04:00
|
|
|
{ return this->InitialCommandLineArguments; };
|
|
|
|
|
2006-04-28 19:59:31 +04:00
|
|
|
//! Set the track to submit to
|
|
|
|
void SetSpecificTrack(const char* track);
|
|
|
|
const char* GetSpecificTrack();
|
|
|
|
|
2009-08-27 18:37:30 +04:00
|
|
|
void SetFailover(bool failover) { this->Failover = failover; }
|
|
|
|
bool GetFailover() { return this->Failover; }
|
|
|
|
|
2009-09-02 18:08:40 +04:00
|
|
|
void SetBatchJobs(bool batch = true) { this->BatchJobs = batch; }
|
|
|
|
bool GetBatchJobs() { return this->BatchJobs; }
|
|
|
|
|
2008-07-03 17:31:33 +04:00
|
|
|
bool GetVerbose() { return this->Verbose;}
|
|
|
|
bool GetExtraVerbose() { return this->ExtraVerbose;}
|
2009-01-05 22:14:10 +03:00
|
|
|
|
|
|
|
/** Direct process output to given streams. */
|
|
|
|
void SetStreams(std::ostream* out, std::ostream* err)
|
|
|
|
{ this->StreamOut = out; this->StreamErr = err; }
|
2009-01-09 20:05:23 +03:00
|
|
|
void AddSiteProperties(std::ostream& );
|
2009-09-11 21:34:35 +04:00
|
|
|
bool GetLabelSummary() { return this->LabelSummary;}
|
2010-03-01 19:00:23 +03:00
|
|
|
|
|
|
|
std::string GetCostDataFile();
|
2005-02-17 23:23:00 +03:00
|
|
|
private:
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string ConfigType;
|
2009-10-29 22:30:12 +03:00
|
|
|
std::string ScheduleType;
|
2010-03-16 22:33:55 +03:00
|
|
|
std::string StopTime;
|
|
|
|
bool NextDayStopTime;
|
2006-03-15 19:02:08 +03:00
|
|
|
bool Verbose;
|
|
|
|
bool ExtraVerbose;
|
|
|
|
bool ProduceXML;
|
2009-09-11 21:34:35 +04:00
|
|
|
bool LabelSummary;
|
2009-12-11 22:10:37 +03:00
|
|
|
bool UseHTTP10;
|
2010-08-31 18:41:23 +04:00
|
|
|
bool PrintLabels;
|
2009-08-27 18:37:30 +04:00
|
|
|
bool Failover;
|
2009-09-02 18:08:40 +04:00
|
|
|
bool BatchJobs;
|
2009-08-27 18:37:30 +04:00
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
bool ForceNewCTestProcess;
|
2005-02-17 18:51:52 +03:00
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
bool RunConfigurationScript;
|
2005-02-17 18:51:52 +03:00
|
|
|
|
2009-12-21 20:27:04 +03:00
|
|
|
//flag for lazy getter (optimization)
|
|
|
|
bool ComputedCompressOutput;
|
|
|
|
|
2005-02-17 18:51:52 +03:00
|
|
|
int GenerateNotesFile(const char* files);
|
|
|
|
|
2010-03-16 22:33:55 +03:00
|
|
|
void DetermineNextDayStop();
|
|
|
|
|
2004-09-07 17:17:15 +04:00
|
|
|
// these are helper classes
|
2005-01-27 23:54:47 +03:00
|
|
|
typedef std::map<cmStdString,cmCTestGenericHandler*> t_TestingHandlers;
|
2006-03-15 19:02:08 +03:00
|
|
|
t_TestingHandlers TestingHandlers;
|
2006-03-09 19:57:43 +03:00
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
bool ShowOnly;
|
2004-09-07 17:17:15 +04:00
|
|
|
|
2004-06-02 21:39:25 +04:00
|
|
|
//! Map of configuration properties
|
2006-03-10 23:03:09 +03:00
|
|
|
typedef std::map<cmStdString, cmStdString> CTestConfigurationMap;
|
2002-10-07 04:36:52 +04:00
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string CTestConfigFile;
|
2009-02-13 19:49:26 +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.
|
2006-03-15 19:02:08 +03:00
|
|
|
CTestConfigurationMap CTestConfiguration;
|
|
|
|
CTestConfigurationMap CTestConfigurationOverwrites;
|
2009-01-12 18:37:25 +03:00
|
|
|
PartInfo Parts[PartCount];
|
|
|
|
typedef std::map<cmStdString, Part> PartMapType;
|
|
|
|
PartMapType PartMap;
|
2006-03-09 19:57:43 +03:00
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string CurrentTag;
|
|
|
|
bool TomorrowTag;
|
2002-10-09 06:00:11 +04:00
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
int TestModel;
|
2006-04-28 19:59:31 +04:00
|
|
|
std::string SpecificTrack;
|
2003-02-11 05:52:01 +03:00
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
double TimeOut;
|
2003-08-04 06:36:17 +04:00
|
|
|
|
2009-12-01 00:08:11 +03:00
|
|
|
double GlobalTimeout;
|
|
|
|
|
2010-03-19 16:08:57 +03:00
|
|
|
int LastStopTimeout;
|
|
|
|
|
2008-09-22 22:04:13 +04:00
|
|
|
int MaxTestNameWidth;
|
|
|
|
|
2008-07-03 17:31:33 +04:00
|
|
|
int ParallelLevel;
|
2009-08-27 18:37:30 +04:00
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
int CompatibilityMode;
|
2003-12-16 01:26:00 +03:00
|
|
|
|
2004-01-07 19:24:22 +03:00
|
|
|
// information for the --build-and-test options
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string CMakeSelf;
|
|
|
|
std::string CTestSelf;
|
|
|
|
std::string BinaryDir;
|
2005-06-04 00:10:55 +04:00
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string NotesFiles;
|
2006-03-09 19:57:43 +03:00
|
|
|
|
2004-01-07 03:13:55 +03:00
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
bool InteractiveDebugMode;
|
2004-08-26 17:45:20 +04:00
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
bool ShortDateFormat;
|
2005-01-27 18:15:01 +03:00
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
bool CompressXMLFiles;
|
2006-03-09 19:57:43 +03:00
|
|
|
|
2009-12-16 22:50:16 +03:00
|
|
|
bool CompressTestOutput;
|
|
|
|
|
2009-01-05 22:14:10 +03:00
|
|
|
void InitStreams();
|
|
|
|
std::ostream* StreamOut;
|
|
|
|
std::ostream* StreamErr;
|
|
|
|
|
2004-05-07 20:53:35 +04:00
|
|
|
void BlockTestErrorDiagnostics();
|
2006-03-09 19:57:43 +03:00
|
|
|
|
2009-11-24 16:58:48 +03:00
|
|
|
/**
|
2009-12-29 22:38:31 +03: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 16:58:48 +03: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 22:38:31 +03:00
|
|
|
int Initialize(const char* binary_dir, cmCTestStartCommand* command);
|
2004-03-14 19:23:57 +03:00
|
|
|
|
2006-10-12 20:51:27 +04:00
|
|
|
//! parse the option after -D and convert it into the appropriate steps
|
|
|
|
bool AddTestsForDashboardType(std::string &targ);
|
|
|
|
|
|
|
|
//! parse and process most common command line arguments
|
|
|
|
void HandleCommandLineArguments(size_t &i,
|
|
|
|
std::vector<std::string> &args);
|
|
|
|
|
|
|
|
//! hande the -S -SP and -SR arguments
|
|
|
|
void HandleScriptArguments(size_t &i,
|
|
|
|
std::vector<std::string> &args,
|
|
|
|
bool &SRArgumentSpecified);
|
|
|
|
|
2004-01-07 03:13:55 +03:00
|
|
|
//! Reread the configuration file
|
2005-02-17 23:23:00 +03:00
|
|
|
bool UpdateCTestConfiguration();
|
2004-01-07 03:13:55 +03:00
|
|
|
|
2011-02-18 20:11:51 +03:00
|
|
|
//! Create note from files.
|
2006-03-09 19:57:43 +03:00
|
|
|
int GenerateCTestNotesOutput(std::ostream& os,
|
2006-03-10 23:03:09 +03:00
|
|
|
const VectorOfStrings& files);
|
2003-12-26 23:02:26 +03:00
|
|
|
|
2004-01-07 19:24:22 +03:00
|
|
|
///! Find the running cmake
|
2007-12-14 01:56:50 +03:00
|
|
|
void FindRunningCMake();
|
2004-07-21 00:18:22 +04:00
|
|
|
|
2005-07-18 19:46:45 +04:00
|
|
|
//! Check if the argument is the one specified
|
2006-03-09 19:57:43 +03:00
|
|
|
bool CheckArgument(const std::string& arg, const char* varg1,
|
|
|
|
const char* varg2 = 0);
|
2005-07-18 19:46:45 +04:00
|
|
|
|
2009-01-18 21:03:32 +03:00
|
|
|
//! Output errors from a test
|
|
|
|
void OutputTestErrors(std::vector<char> const &process_output);
|
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
bool SuppressUpdatingCTestConfiguration;
|
2005-06-01 01:32:40 +04:00
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
bool Debug;
|
|
|
|
bool ShowLineNumbers;
|
|
|
|
bool Quiet;
|
2005-06-01 01:32:40 +04:00
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
int DartVersion;
|
2005-06-23 21:04:18 +04:00
|
|
|
|
2006-04-04 21:04:28 +04:00
|
|
|
std::vector<cmStdString> InitialCommandLineArguments;
|
2006-04-09 15:45:18 +04:00
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
int SubmitIndex;
|
2006-03-09 19:57:43 +03:00
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
cmGeneratedFileStream* OutputLogFile;
|
|
|
|
int OutputLogFileLastTag;
|
2009-01-18 21:03:32 +03:00
|
|
|
|
|
|
|
bool OutputTestOutputOnTestFailure;
|
2001-08-23 19:12:19 +04:00
|
|
|
};
|
|
|
|
|
2005-06-01 01:32:40 +04:00
|
|
|
class cmCTestLogWrite
|
|
|
|
{
|
|
|
|
public:
|
2006-03-09 19:57:43 +03:00
|
|
|
cmCTestLogWrite(const char* data, size_t length)
|
|
|
|
: Data(data), Length(length) {}
|
2005-06-01 01:32:40 +04:00
|
|
|
|
|
|
|
const char* Data;
|
|
|
|
size_t Length;
|
|
|
|
};
|
|
|
|
|
|
|
|
inline std::ostream& operator<< (std::ostream& os, const cmCTestLogWrite& c)
|
|
|
|
{
|
2006-03-01 00:17:27 +03:00
|
|
|
if (!c.Length)
|
|
|
|
{
|
|
|
|
return os;
|
|
|
|
}
|
2005-06-01 01:32:40 +04:00
|
|
|
os.write(c.Data, c.Length);
|
|
|
|
os.flush();
|
|
|
|
return os;
|
|
|
|
}
|
|
|
|
|
2003-02-11 05:52:01 +03:00
|
|
|
#endif
|