CMake/Source/ctest.h

127 lines
2.7 KiB
C
Raw Normal View History

2001-08-23 19:12:19 +04:00
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile$
Language: C++
Date: $Date$
Version: $Revision$
2002-01-21 23:30:43 +03:00
Copyright (c) 2002 Insight Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
2001-08-23 19:12:19 +04:00
2002-01-21 23:30:43 +03:00
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
2001-08-23 19:12:19 +04:00
=========================================================================*/
#include "cmStandardIncludes.h"
2002-05-22 17:47:41 +04:00
2001-08-23 19:12:19 +04:00
class ctest
{
public:
/**
* Initialize and finalize testing
*/
void Initialize();
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();
/**
* Try to build the project
*/
void BuildDirectory();
/**
* Do revision control update of directory
*/
void UpdateDirectory();
2001-08-23 19:12:19 +04:00
/**
* Do configure the project
*/
void ConfigureDirectory();
2001-08-23 19:12:19 +04:00
/**
* Run the test for a directory and any subdirectories
*/
void ProcessDirectory(std::vector<std::string> &passed,
std::vector<std::string> &failed);
2001-08-23 19:12:19 +04:00
/**
* Generate the Dart compatible output
*/
void GenerateDartOutput(std::ostream& os);
2001-08-23 19:12:19 +04:00
/**
* Find the executable for a test
*/
std::string FindExecutable(const char *exe);
/**
* Set the cmake test
*/
bool SetTest(const char*);
2001-08-23 19:12:19 +04:00
/**
* constructor
*/
ctest();
bool m_UseIncludeRegExp;
std::string m_IncludeRegExp;
bool m_UseExcludeRegExp;
bool m_UseExcludeRegExpFirst;
std::string m_ExcludeRegExp;
2001-08-30 00:42:03 +04:00
std::string m_ConfigType;
bool m_Verbose;
bool m_DartMode;
2001-08-23 19:12:19 +04:00
private:
enum {
FIRST_TEST = 0,
UPDATE_TEST,
CONFIGURE_TEST,
BUILD_TEST,
TEST_TEST,
COVERAGE_TEST,
PURIFY_TEST,
ALL_TEST,
LAST_TEST
};
struct cmCTestTestResult
{
std::string m_Name;
std::string m_Path;
std::string m_FullCommandLine;
double m_ExecutionTime;
int m_ReturnValue;
std::string m_CompletionStatus;
std::string m_Output;
};
typedef std::vector<cmCTestTestResult> tm_TestResultsVector;
typedef std::map<std::string, std::string> tm_DartConfigurationMap;
tm_TestResultsVector m_TestResults;
std::string m_ToplevelPath;
tm_DartConfigurationMap m_DartConfiguration;
int m_Tests[LAST_TEST];
2001-08-23 19:12:19 +04:00
};