2001-08-23 19:12:19 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-08-23 19:12:19 +04:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
2001-08-23 19:12:19 +04:00
|
|
|
|
2006-03-09 19:57:43 +03:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
2002-01-21 23:30:43 +03:00
|
|
|
PURPOSE. See the above copyright notices 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;
|
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
|
|
|
{
|
|
|
|
public:
|
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
|
|
|
|
int Run(std::vector<std::string>const&, std::string* output = 0);
|
2006-03-09 19:57:43 +03:00
|
|
|
|
2002-10-07 04:36:52 +04:00
|
|
|
/**
|
|
|
|
* Initialize and finalize testing
|
|
|
|
*/
|
2006-03-09 19:57:43 +03:00
|
|
|
int Initialize(const char* binary_dir, bool new_tag = false,
|
|
|
|
bool verbose_tag = true);
|
2005-06-16 21:18:21 +04:00
|
|
|
bool InitializeFromCommand(cmCTestCommand* command, bool first = false);
|
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.
|
|
|
|
std::string GetConfigType();
|
2006-03-15 19:02:08 +03:00
|
|
|
double GetTimeOut() { return this->TimeOut; }
|
|
|
|
void SetTimeOut(double t) { this->TimeOut = t; }
|
2006-03-09 19:57:43 +03:00
|
|
|
|
2003-01-07 07:13:15 +03:00
|
|
|
/**
|
|
|
|
* Check if CTest file exists
|
|
|
|
*/
|
|
|
|
bool CTestFileExists(const std::string& filename);
|
2006-03-10 23:03:09 +03:00
|
|
|
bool AddIfExists(SetOfStrings& files, 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
|
|
|
|
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
|
|
|
|
|
|
|
///! Convert string to something that is XML safe
|
2004-09-07 17:17:15 +04:00
|
|
|
static std::string MakeXMLSafe(const std::string&);
|
|
|
|
|
|
|
|
///! Should we only show what we would do?
|
|
|
|
bool GetShowOnly();
|
2005-06-14 19:42:53 +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
|
|
|
|
void StartXML(std::ostream& ostr);
|
|
|
|
|
|
|
|
//! 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
|
|
|
|
// return value or exception.
|
2006-03-09 19:57:43 +03:00
|
|
|
int RunTest(std::vector<const char*> args, std::string* output, int *retVal,
|
2004-09-09 16:41:05 +04:00
|
|
|
std::ostream* logfile);
|
|
|
|
|
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
|
|
|
|
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);
|
|
|
|
|
|
|
|
//! 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
|
|
|
|
void AddSubmitFile(const char* name);
|
2006-03-15 19:02:08 +03:00
|
|
|
SetOfStrings* GetSubmitFiles() { return &this->SubmitFiles; }
|
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
|
2006-04-09 15:45:18 +04:00
|
|
|
int ReadCustomConfigurationFileTree(const char* dir, cmMakefile* mf,
|
|
|
|
bool fast = false);
|
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();
|
|
|
|
|
2005-02-17 23:23:00 +03:00
|
|
|
private:
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string ConfigType;
|
|
|
|
bool Verbose;
|
|
|
|
bool ExtraVerbose;
|
|
|
|
bool ProduceXML;
|
2004-10-01 20:21:16 +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
|
|
|
|
|
|
|
int GenerateNotesFile(const char* files);
|
|
|
|
|
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
|
|
|
|
2002-10-07 04:36:52 +04:00
|
|
|
enum {
|
2003-02-11 07:19:01 +03:00
|
|
|
FIRST_TEST = 0,
|
|
|
|
UPDATE_TEST = 1,
|
2003-03-20 00:35:02 +03:00
|
|
|
START_TEST = 2,
|
|
|
|
CONFIGURE_TEST = 3,
|
|
|
|
BUILD_TEST = 4,
|
|
|
|
TEST_TEST = 5,
|
|
|
|
COVERAGE_TEST = 6,
|
2003-12-16 01:26:00 +03:00
|
|
|
MEMCHECK_TEST = 7,
|
2003-03-20 00:35:02 +03:00
|
|
|
SUBMIT_TEST = 8,
|
2003-12-26 23:02:26 +03:00
|
|
|
NOTES_TEST = 9,
|
|
|
|
ALL_TEST = 10,
|
|
|
|
LAST_TEST = 11
|
2002-10-07 04:36:52 +04:00
|
|
|
};
|
2006-03-09 19:57:43 +03: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;
|
|
|
|
CTestConfigurationMap CTestConfiguration;
|
|
|
|
CTestConfigurationMap CTestConfigurationOverwrites;
|
|
|
|
int Tests[LAST_TEST];
|
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
|
|
|
|
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
|
|
|
|
2004-05-07 20:53:35 +04:00
|
|
|
void BlockTestErrorDiagnostics();
|
2006-03-09 19:57:43 +03:00
|
|
|
|
2004-03-14 19:23:57 +03:00
|
|
|
|
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
|
|
|
|
2003-12-26 23:02:26 +03:00
|
|
|
//! Create not 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
|
|
|
|
void FindRunningCMake(const char* arg0);
|
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
|
|
|
|
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-03-15 19:02:08 +03:00
|
|
|
std::set<cmStdString> SubmitFiles;
|
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;
|
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
|