CMake/Source/CTest/cmCTestTestHandler.h

249 lines
7.0 KiB
C
Raw Normal View History

2004-09-09 16:41:05 +04:00
/*=========================================================================
Program: CMake - Cross-Platform Makefile Generator
Module: $RCSfile$
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) 2002 Kitware, Inc. All rights reserved.
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
2006-03-09 19:17:10 +03:00
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
2004-09-09 16:41:05 +04:00
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#ifndef cmCTestTestHandler_h
#define cmCTestTestHandler_h
2005-01-27 19:43:22 +03:00
#include "cmCTestGenericHandler.h"
#include <cmsys/RegularExpression.hxx>
2004-09-09 16:41:05 +04:00
class cmMakefile;
/** \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
{
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
*/
2005-01-27 23:54:47 +03:00
int ProcessHandler();
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; }
2005-01-27 23:54:47 +03:00
/**
* This method is called when reading CTest custom file
*/
void PopulateCustomVectors(cmMakefile *mf);
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
void UseIncludeRegExp();
void UseExcludeRegExp();
void SetIncludeRegExp(const char *);
void SetExcludeRegExp(const char *);
2006-03-09 19:17:10 +03:00
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);
void Initialize();
2005-01-28 00:49:10 +03:00
struct cmCTestTestProperties
{
2006-03-10 23:03:09 +03:00
cmStdString Name;
cmStdString Directory;
std::vector<std::string> Args;
2008-07-03 17:31:33 +04:00
std::vector<std::string> Depends;
2007-09-24 19:10:55 +04:00
std::vector<std::pair<cmsys::RegularExpression,
std::string> > ErrorRegularExpressions;
std::vector<std::pair<cmsys::RegularExpression,
std::string> > RequiredRegularExpressions;
std::map<cmStdString, cmStdString> Measurements;
2006-03-10 23:03:09 +03:00
bool IsInBasedOnREOptions;
bool WillFail;
2007-01-25 19:16:16 +03:00
double Timeout;
2008-07-03 17:31:33 +04:00
int Index;
std::vector<std::string> Environment;
2005-01-28 00:49:10 +03:00
};
struct cmCTestTestResult
{
std::string Name;
std::string Path;
std::string FullCommandLine;
double ExecutionTime;
int ReturnValue;
int Status;
std::string CompletionStatus;
std::string Output;
std::string RegressionImages;
int TestCount;
cmCTestTestProperties* Properties;
};
// add configuraitons 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);
2006-10-13 22:44:35 +04:00
protected:
2008-07-03 17:31:33 +04:00
// comput a final test list
2005-01-27 23:54:47 +03:00
virtual int PreProcessHandler();
virtual int PostProcessHandler();
virtual void GenerateTestCommand(std::vector<const char*>& args);
int ExecuteCommands(std::vector<cmStdString>& vec);
//! Clean test output to specified length
bool CleanTestOutput(std::string& output, size_t length);
2006-03-10 23:03:09 +03:00
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
2006-03-10 23:03:09 +03:00
std::vector<cmStdString> 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;
2007-07-24 22:43:31 +04:00
protected:
/**
* Run one test
*/
virtual void ProcessOneTest(cmCTestTestProperties *props,
std::vector<cmStdString> &passed,
std::vector<cmStdString> &failed,
int count, int tmsize);
2005-01-27 23:54:47 +03:00
2008-07-03 17:31:33 +04:00
public:
2005-01-27 23:54:47 +03:00
enum { // Program statuses
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
*/
2005-01-27 23:54:47 +03:00
virtual void GenerateDartOutput(std::ostream& os);
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
*/
2006-03-09 19:17:10 +03:00
void ProcessDirectory(std::vector<cmStdString> &passed,
2005-01-27 23:54:47 +03:00
std::vector<cmStdString> &failed);
2006-03-09 19:17:10 +03:00
2006-03-10 23:03:09 +03:00
typedef std::vector<cmCTestTestProperties> ListOfTests;
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();
// Save the state of the test list and return the file
// name it was saved to
std::string SaveTestList();
void LoadTestList();
bool GetValue(const char* tag,
std::string& value,
std::ifstream& fin);
bool GetValue(const char* tag,
int& value,
std::ifstream& fin);
bool GetValue(const char* tag,
size_t& value,
std::ifstream& fin);
bool GetValue(const char* tag,
bool& value,
std::ifstream& fin);
bool GetValue(const char* tag,
double& value,
std::ifstream& fin);
// run in -j N mode
void ProcessParallel(std::vector<cmStdString> &passed,
std::vector<cmStdString> &failed);
2004-09-09 16:41:05 +04:00
/**
* Find the executable for a test
*/
std::string FindTheExecutable(const char *exe);
const char* GetTestStatus(int status);
2008-07-07 03:58:38 +04:00
void ExpandTestsToRunInformation(size_t numPossibleTests);
2004-09-09 16:41:05 +04:00
2006-03-10 23:03:09 +03:00
std::vector<cmStdString> CustomPreTest;
std::vector<cmStdString> CustomPostTest;
2004-09-09 16:41:05 +04:00
2006-03-10 23:03:09 +03:00
std::vector<int> TestsToRun;
2004-09-09 16:41:05 +04:00
2006-03-10 23:03:09 +03:00
bool UseIncludeRegExpFlag;
bool UseExcludeRegExpFlag;
bool UseExcludeRegExpFirst;
std::string IncludeRegExp;
std::string ExcludeRegExp;
cmsys::RegularExpression IncludeTestsRegularExpression;
cmsys::RegularExpression ExcludeTestsRegularExpression;
2004-09-09 16:41:05 +04:00
std::string GenerateRegressionImages(const std::string& xml);
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;
2004-09-09 16:41:05 +04:00
};
#endif