2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2005-07-31 19:51:42 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2005-07-31 19:51:42 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2005-07-31 19:51:42 +04:00
|
|
|
#ifndef cmSetTestsPropertiesCommand_h
|
|
|
|
#define cmSetTestsPropertiesCommand_h
|
|
|
|
|
|
|
|
#include "cmCommand.h"
|
|
|
|
|
|
|
|
class cmSetTestsPropertiesCommand : public cmCommand
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual cmCommand* Clone()
|
|
|
|
{
|
|
|
|
return new cmSetTestsPropertiesCommand;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is called when the command is first encountered in
|
|
|
|
* the input file.
|
|
|
|
*/
|
2008-01-23 18:28:26 +03:00
|
|
|
virtual bool InitialPass(std::vector<std::string> const& args,
|
|
|
|
cmExecutionStatus &status);
|
2005-07-31 19:51:42 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the command as specified in CMakeList.txt.
|
|
|
|
*/
|
2007-10-10 19:47:43 +04:00
|
|
|
virtual const char* GetName() { return "set_tests_properties";}
|
2005-07-31 19:51:42 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Succinct documentation.
|
|
|
|
*/
|
|
|
|
virtual const char* GetTerseDocumentation()
|
|
|
|
{
|
|
|
|
return "Set a property of the tests.";
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Longer documentation.
|
|
|
|
*/
|
|
|
|
virtual const char* GetFullDocumentation()
|
|
|
|
{
|
|
|
|
return
|
2007-10-10 19:47:43 +04:00
|
|
|
" set_tests_properties(test1 [test2...] PROPERTIES prop1 value1 prop2"
|
2006-03-10 19:13:15 +03:00
|
|
|
" value2)\n"
|
2006-05-12 21:53:21 +04:00
|
|
|
"Set a property for the tests. If the property is not found, CMake "
|
|
|
|
"will report an error. The properties include:\n"
|
2006-03-10 19:13:15 +03:00
|
|
|
"WILL_FAIL: If set to true, this will invert the pass/fail flag of the"
|
|
|
|
" test.\n"
|
2005-11-09 19:14:54 +03:00
|
|
|
"PASS_REGULAR_EXPRESSION: If set, the test output will be checked "
|
2006-03-10 19:13:15 +03:00
|
|
|
"against the specified regular expressions and at least one of the"
|
|
|
|
" regular "
|
2005-11-09 19:07:36 +03:00
|
|
|
"expressions has to match, otherwise the test will fail.\n"
|
2005-11-09 19:14:54 +03:00
|
|
|
" Example: PASS_REGULAR_EXPRESSION \"TestPassed;All ok\"\n"
|
|
|
|
"FAIL_REGULAR_EXPRESSION: If set, if the output will match to one of "
|
|
|
|
"specified regular expressions, the test will fail.\n"
|
|
|
|
" Example: PASS_REGULAR_EXPRESSION \"[^a-z]Error;ERROR;Failed\"\n"
|
2006-05-12 21:53:21 +04:00
|
|
|
"Both PASS_REGULAR_EXPRESSION and FAIL_REGULAR_EXPRESSION expect a "
|
2009-09-03 19:14:13 +04:00
|
|
|
"list of regular expressions.\n"
|
2009-09-03 18:47:14 +04:00
|
|
|
"PROCESSORS: Denotes the number of processors that this test will "
|
|
|
|
"require. This is typically used for MPI tests, and should be used in "
|
2009-09-03 19:14:13 +04:00
|
|
|
"conjunction with the ctest_test PARALLEL_LEVEL option.\n"
|
2009-09-08 21:39:13 +04:00
|
|
|
"COST: Set this to a floating point value. Tests in a test set will be "
|
|
|
|
"run in descending order of cost.\n"
|
2009-09-07 18:26:17 +04:00
|
|
|
"RUN_SERIAL: If set to true, this test will not run in parallel with "
|
|
|
|
"any other tests. This should be used in conjunction with "
|
2009-09-03 19:14:13 +04:00
|
|
|
"the ctest_test PARALLEL_LEVEL option.\n";
|
2005-07-31 19:51:42 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
cmTypeMacro(cmSetTestsPropertiesCommand, cmCommand);
|
2006-12-07 22:54:15 +03:00
|
|
|
|
|
|
|
static bool SetOneTest(const char *tname,
|
|
|
|
std::vector<std::string> &propertyPairs,
|
|
|
|
cmMakefile *mf,
|
|
|
|
std::string &errors);
|
2005-07-31 19:51:42 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|