CMake/Source/CTest/cmCTestTestHandler.h

306 lines
8.8 KiB
C
Raw Normal View History

Simplify CMake per-source license notices Per-source copyright/license notice headers that spell out copyright holder names and years are hard to maintain and often out-of-date or plain wrong. Precise contributor information is already maintained automatically by the version control tool. Ultimately it is the receiver of a file who is responsible for determining its licensing status, and per-source notices are merely a convenience. Therefore it is simpler and more accurate for each source to have a generic notice of the license name and references to more detailed information on copyright holders and full license terms. Our `Copyright.txt` file now contains a list of Contributors whose names appeared source-level copyright notices. It also references version control history for more precise information. Therefore we no longer need to spell out the list of Contributors in each source file notice. Replace CMake per-source copyright/license notice headers with a short description of the license and links to `Copyright.txt` and online information available from "https://cmake.org/licensing". The online URL also handles cases of modules being copied out of our source into other projects, so we can drop our notices about replacing links with full license text. Run the `Utilities/Scripts/filter-notices.bash` script to perform the majority of the replacements mechanically. Manually fix up shebang lines and trailing newlines in a few files. Manually update the notices in a few files that the script does not handle.
2016-09-27 22:01:08 +03:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
2004-09-09 16:41:05 +04:00
#ifndef cmCTestTestHandler_h
#define cmCTestTestHandler_h
#include <cmConfigure.h>
2005-01-27 19:43:22 +03:00
#include "cmCTestGenericHandler.h"
#include "cmTypeMacro.h"
#include <cmsys/RegularExpression.hxx>
#include <iosfwd>
#include <map>
#include <set>
#include <stddef.h>
#include <string>
#include <utility>
#include <vector>
2004-09-09 16:41:05 +04:00
class cmCTest;
2004-09-09 16:41:05 +04:00
class cmMakefile;
class cmXMLWriter;
2004-09-09 16:41:05 +04:00
/** \class cmCTestTestHandler
* \brief A class that handles ctest -S invocations
*
*/
2005-01-27 19:43:22 +03:00
class cmCTestTestHandler : public cmCTestGenericHandler
2004-09-09 16:41:05 +04:00
{
friend class cmCTestRunTest;
friend class cmCTestMultiProcessHandler;
friend class cmCTestBatchTestHandler;
2004-09-09 16:41:05 +04:00
public:
cmTypeMacro(cmCTestTestHandler, cmCTestGenericHandler);
2004-09-09 16:41:05 +04:00
2005-01-27 23:54:47 +03:00
/**
2004-09-09 16:41:05 +04:00
* The main entry point for this class
*/
2016-06-27 22:25:27 +03:00
int ProcessHandler() CM_OVERRIDE;
2006-03-09 19:17:10 +03:00
2005-01-27 23:54:47 +03:00
/**
* When both -R and -I are used should te resulting test list be the
* intersection or the union of the lists. By default it is the
* intersection.
*/
2006-03-10 23:03:09 +03:00
void SetUseUnion(bool val) { this->UseUnion = val; }
/**
* Set whether or not CTest should only execute the tests that failed
* on the previous run. By default this is false.
*/
void SetRerunFailed(bool val) { this->RerunFailed = val; }
2005-01-27 23:54:47 +03:00
/**
* This method is called when reading CTest custom file
*/
2016-06-27 22:25:27 +03:00
void PopulateCustomVectors(cmMakefile* mf) CM_OVERRIDE;
2006-03-09 19:17:10 +03:00
2004-09-09 16:41:05 +04:00
///! Control the use of the regular expresisons, call these methods to turn
/// them on
2004-09-09 16:41:05 +04:00
void UseIncludeRegExp();
void UseExcludeRegExp();
void SetIncludeRegExp(const char*);
void SetExcludeRegExp(const char*);
2006-03-09 19:17:10 +03:00
void SetMaxIndex(int n) { this->MaxIndex = n; }
int GetMaxIndex() { return this->MaxIndex; }
2004-09-09 16:41:05 +04:00
void SetTestOutputSizePassed(int n)
{
this->CustomMaximumPassedTestOutputSize = n;
}
void SetTestOutputSizeFailed(int n)
{
this->CustomMaximumFailedTestOutputSize = n;
}
2004-09-09 16:41:05 +04:00
///! pass the -I argument down
void SetTestsToRunInformation(const char*);
2005-01-27 23:54:47 +03:00
cmCTestTestHandler();
2004-09-09 16:41:05 +04:00
/*
* Add the test to the list of tests to be executed
*/
bool AddTest(const std::vector<std::string>& args);
/*
* Set tests properties
*/
bool SetTestsProperties(const std::vector<std::string>& args);
2016-06-27 22:25:27 +03:00
void Initialize() CM_OVERRIDE;
2008-12-19 05:59:25 +03:00
// NOTE: This struct is Saved/Restored
// in cmCTestTestHandler, if you add to this class
// then you must add the new members to that code or
// ctest -j N will break for that feature
2005-01-28 00:49:10 +03:00
struct cmCTestTestProperties
{
std::string Name;
std::string Directory;
2006-03-10 23:03:09 +03:00
std::vector<std::string> Args;
std::vector<std::string> RequiredFiles;
2008-07-03 17:31:33 +04:00
std::vector<std::string> Depends;
std::vector<std::string> AttachedFiles;
std::vector<std::string> AttachOnFail;
std::vector<std::pair<cmsys::RegularExpression, std::string> >
ErrorRegularExpressions;
std::vector<std::pair<cmsys::RegularExpression, std::string> >
RequiredRegularExpressions;
std::vector<std::pair<cmsys::RegularExpression, std::string> >
TimeoutRegularExpressions;
std::map<std::string, std::string> Measurements;
2006-03-10 23:03:09 +03:00
bool IsInBasedOnREOptions;
bool WillFail;
float Cost;
int PreviousRuns;
bool RunSerial;
2007-01-25 19:16:16 +03:00
double Timeout;
bool ExplicitTimeout;
double AlternateTimeout;
2008-07-03 17:31:33 +04:00
int Index;
// Requested number of process slots
int Processors;
// return code of test which will mark test as "not run"
int SkipReturnCode;
std::vector<std::string> Environment;
std::vector<std::string> Labels;
2010-03-02 23:34:37 +03:00
std::set<std::string> LockedResources;
std::set<std::string> FixturesSetup;
std::set<std::string> FixturesCleanup;
std::set<std::string> FixturesRequired;
std::set<std::string> RequireSuccessDepends;
2005-01-28 00:49:10 +03:00
};
struct cmCTestTestResult
{
std::string Name;
std::string Path;
std::string Reason;
std::string FullCommandLine;
double ExecutionTime;
int ReturnValue;
int Status;
bool CompressOutput;
std::string CompletionStatus;
std::string Output;
std::string DartString;
int TestCount;
cmCTestTestProperties* Properties;
};
struct cmCTestTestResultLess
{
bool operator()(const cmCTestTestResult& lhs,
const cmCTestTestResult& rhs) const
{
return lhs.TestCount < rhs.TestCount;
}
};
// add configurations to a search path for an executable
static void AddConfigurations(cmCTest* ctest,
std::vector<std::string>& attempted,
std::vector<std::string>& attemptedConfigs,
std::string filepath, std::string& filename);
// full signature static method to find an executable
static std::string FindExecutable(cmCTest* ctest, const char* testCommand,
std::string& resultingConfig,
std::vector<std::string>& extraPaths,
std::vector<std::string>& failed);
typedef std::vector<cmCTestTestProperties> ListOfTests;
2006-10-13 22:44:35 +04:00
protected:
// compute a final test list
2005-01-27 23:54:47 +03:00
virtual int PreProcessHandler();
virtual int PostProcessHandler();
virtual void GenerateTestCommand(std::vector<std::string>& args, int test);
int ExecuteCommands(std::vector<std::string>& vec);
2005-01-27 23:54:47 +03:00
void WriteTestResultHeader(cmXMLWriter& xml, cmCTestTestResult* result);
void WriteTestResultFooter(cmXMLWriter& xml, cmCTestTestResult* result);
// Write attached test files into the xml
void AttachFiles(cmXMLWriter& xml, cmCTestTestResult* result);
//! Clean test output to specified length
bool CleanTestOutput(std::string& output, size_t length);
double ElapsedTestingTime;
2005-01-27 23:54:47 +03:00
2006-03-10 23:03:09 +03:00
typedef std::vector<cmCTestTestResult> TestResultsVector;
TestResultsVector TestResults;
2004-09-09 16:41:05 +04:00
std::vector<std::string> CustomTestsIgnore;
std::string StartTest;
std::string EndTest;
unsigned int StartTestTime;
unsigned int EndTestTime;
2006-03-10 23:03:09 +03:00
bool MemCheck;
int CustomMaximumPassedTestOutputSize;
int CustomMaximumFailedTestOutputSize;
int MaxIndex;
2008-07-03 17:31:33 +04:00
public:
enum
{ // Program statuses
2005-01-27 23:54:47 +03:00
NOT_RUN = 0,
TIMEOUT,
SEGFAULT,
ILLEGAL,
INTERRUPT,
NUMERICAL,
OTHER_FAULT,
FAILED,
BAD_COMMAND,
COMPLETED
};
2004-09-09 16:41:05 +04:00
2008-07-03 17:31:33 +04:00
private:
2004-09-09 16:41:05 +04:00
/**
* Generate the Dart compatible output
*/
virtual void GenerateDartOutput(cmXMLWriter& xml);
2004-09-09 16:41:05 +04:00
void PrintLabelSummary();
2004-09-09 16:41:05 +04:00
/**
2007-01-25 19:16:16 +03:00
* Run the tests for a directory and any subdirectories
2004-09-09 16:41:05 +04:00
*/
void ProcessDirectory(std::vector<std::string>& passed,
std::vector<std::string>& failed);
2006-03-09 19:17:10 +03:00
2004-09-09 16:41:05 +04:00
/**
* Get the list of tests in directory and subdirectories.
*/
void GetListOfTests();
2008-07-03 17:31:33 +04:00
// compute the lists of tests that will actually run
// based on union regex and -I stuff
void ComputeTestList();
2011-03-11 16:04:58 +03:00
// compute the lists of tests that will actually run
// based on LastTestFailed.log
void ComputeTestListForRerunFailed();
// add required setup/cleanup tests not already in the
// list of tests to be run and update dependencies between
// tests to account for fixture setup/cleanup
void UpdateForFixtures(ListOfTests& tests) const;
void UpdateMaxTestNameWidth();
bool GetValue(const char* tag, std::string& value, std::istream& fin);
bool GetValue(const char* tag, int& value, std::istream& fin);
bool GetValue(const char* tag, size_t& value, std::istream& fin);
bool GetValue(const char* tag, bool& value, std::istream& fin);
bool GetValue(const char* tag, double& value, std::istream& fin);
2004-09-09 16:41:05 +04:00
/**
* Find the executable for a test
*/
std::string FindTheExecutable(const char* exe);
2004-09-09 16:41:05 +04:00
const char* GetTestStatus(int status);
2008-07-07 03:58:38 +04:00
void ExpandTestsToRunInformation(size_t numPossibleTests);
void ExpandTestsToRunInformationForRerunFailed();
2004-09-09 16:41:05 +04:00
std::vector<std::string> CustomPreTest;
std::vector<std::string> CustomPostTest;
2004-09-09 16:41:05 +04:00
std::vector<int> TestsToRun;
2004-09-09 16:41:05 +04:00
bool UseIncludeLabelRegExpFlag;
bool UseExcludeLabelRegExpFlag;
2006-03-10 23:03:09 +03:00
bool UseIncludeRegExpFlag;
bool UseExcludeRegExpFlag;
bool UseExcludeRegExpFirst;
std::string IncludeLabelRegExp;
std::string ExcludeLabelRegExp;
2006-03-10 23:03:09 +03:00
std::string IncludeRegExp;
std::string ExcludeRegExp;
cmsys::RegularExpression IncludeLabelRegularExpression;
cmsys::RegularExpression ExcludeLabelRegularExpression;
2006-03-10 23:03:09 +03:00
cmsys::RegularExpression IncludeTestsRegularExpression;
cmsys::RegularExpression ExcludeTestsRegularExpression;
2004-09-09 16:41:05 +04:00
void GenerateRegressionImages(cmXMLWriter& xml, const std::string& dart);
2009-01-15 18:32:56 +03:00
cmsys::RegularExpression DartStuff1;
void CheckLabelFilter(cmCTestTestProperties& it);
void CheckLabelFilterExclude(cmCTestTestProperties& it);
void CheckLabelFilterInclude(cmCTestTestProperties& it);
2004-09-09 16:41:05 +04:00
std::string TestsToRunString;
2006-03-10 23:03:09 +03:00
bool UseUnion;
ListOfTests TestList;
2008-07-03 17:31:33 +04:00
size_t TotalNumberOfTests;
2006-03-10 23:03:09 +03:00
cmsys::RegularExpression DartStuff;
2005-08-18 21:50:16 +04:00
2006-03-10 23:03:09 +03:00
std::ostream* LogFile;
bool RerunFailed;
2004-09-09 16:41:05 +04:00
};
#endif