CMake/Source/ctest.h

57 lines
1.3 KiB
C
Raw Normal View History

2001-08-23 15:12:19 +00:00
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile$
Language: C++
Date: $Date$
Version: $Revision$
2002-01-21 20:30:43 +00: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 15:12:19 +00:00
2002-01-21 20:30:43 +00: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 15:12:19 +00:00
=========================================================================*/
#include "cmStandardIncludes.h"
2002-05-22 13:47:41 +00:00
2001-08-23 15:12:19 +00:00
class ctest
{
public:
/**
* Run the test for a directory and any subdirectories
*/
void ProcessDirectory(std::vector<std::string> &passed,
std::vector<std::string> &failed);
2001-08-23 15:12:19 +00:00
/**
* Find the executable for a test
*/
std::string FindExecutable(const char *exe);
/**
* constructor
*/
ctest() {
m_UseIncludeRegExp = false;
m_UseExcludeRegExp = false;
m_UseExcludeRegExpFirst = false;
}
bool m_UseIncludeRegExp;
std::string m_IncludeRegExp;
bool m_UseExcludeRegExp;
bool m_UseExcludeRegExpFirst;
std::string m_ExcludeRegExp;
2001-08-29 20:42:03 +00:00
std::string m_ConfigType;
2001-08-23 15:12:19 +00:00
private:
};