STYLE: More comments
This commit is contained in:
parent
4e9d832525
commit
4245eb0b53
|
@ -55,12 +55,16 @@ public:
|
||||||
" SET_TESTS_PROPERTIES(test1 [test2...] PROPERTIES prop1 value1 prop2 value2)\n"
|
" SET_TESTS_PROPERTIES(test1 [test2...] PROPERTIES prop1 value1 prop2 value2)\n"
|
||||||
"Set a property for the tests. If the property is not found, CMake will "
|
"Set a property for the tests. If the property is not found, CMake will "
|
||||||
"report an error. The properties include:\n"
|
"report an error. The properties include:\n"
|
||||||
" WILL_FAIL if set to true, this will invert the pass/fail flag of the test.\n"
|
"WILL_FAIL: If set to true, this will invert the pass/fail flag of the test.\n"
|
||||||
" PASS_REGULAR_EXPRESSION if set, the test output will be checked "
|
"PASS_REGULAR_EXPRESSION: If set, the test output will be checked "
|
||||||
"against the specified regular expressions and at least one of the regular "
|
"against the specified regular expressions and at least one of the regular "
|
||||||
"expressions has to match, otherwise the test will fail.\n"
|
"expressions has to match, otherwise the test will fail.\n"
|
||||||
" FAIL_REGULAR_EXPRESSION if set, if the output will match to one of "
|
" Example: PASS_REGULAR_EXPRESSION \"TestPassed;All ok\"\n"
|
||||||
"specified regular expressions, the test will fail.";
|
"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"
|
||||||
|
"Both PASS_REGULAR_EXPRESSION and FAIL_REGULAR_EXPRESSION expect a list "
|
||||||
|
"of regular expressions.\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
cmTypeMacro(cmSetTestsPropertiesCommand, cmCommand);
|
cmTypeMacro(cmSetTestsPropertiesCommand, cmCommand);
|
||||||
|
|
Loading…
Reference in New Issue