Merge topic 'ctest-variable-docs'

4da5a227 Help: document CTEST_CUSTOM_* variables
70c0cc72 ctest_read_custom_files: mention that ctest does this automatically
71c67e83 CTEST_CUSTOM_*: treat variables as lists
936a95d4 CTestCoverageCollectGCOV: replace tabulators
This commit is contained in:
Brad King
2015-09-22 10:47:05 -04:00
committed by CMake Topic Stage
24 changed files with 151 additions and 21 deletions

View File

@@ -0,0 +1,7 @@
CTEST_CUSTOM_COVERAGE_EXCLUDE
-----------------------------
A list of regular expressions which will be used to exclude files by their
path from coverage output by the :command:`ctest_coverage` command.
.. include:: CTEST_CUSTOM_XXX.txt

View File

@@ -0,0 +1,7 @@
CTEST_CUSTOM_ERROR_EXCEPTION
----------------------------
A list of regular expressions which will be used to exclude when detecting
error messages in build outputs by the :command:`ctest_test` command.
.. include:: CTEST_CUSTOM_XXX.txt

View File

@@ -0,0 +1,7 @@
CTEST_CUSTOM_ERROR_MATCH
------------------------
A list of regular expressions which will be used to detect error messages in
build outputs by the :command:`ctest_test` command.
.. include:: CTEST_CUSTOM_XXX.txt

View File

@@ -0,0 +1,7 @@
CTEST_CUSTOM_ERROR_POST_CONTEXT
-------------------------------
The number of lines to include as context which follow an error message by the
:command:`ctest_test` command. The default is 10.
.. include:: CTEST_CUSTOM_XXX.txt

View File

@@ -0,0 +1,7 @@
CTEST_CUSTOM_ERROR_PRE_CONTEXT
------------------------------
The number of lines to include as context which precede an error message by
the :command:`ctest_test` command. The default is 10.
.. include:: CTEST_CUSTOM_XXX.txt

View File

@@ -1,6 +1,8 @@
CTEST_CUSTOM_MAXIMUM_FAILED_TEST_OUTPUT_SIZE
--------------------------------------------
Specify the maximum amount of output from a failed test that will
be collected by the :command:`ctest_test` command. If not set,
the default is 300 KiB.
When saving a failing test's output, this is the maximum size, in bytes, that
will be collected by the :command:`ctest_test` command. Defaults to 307200
(300 KiB).
.. include:: CTEST_CUSTOM_XXX.txt

View File

@@ -0,0 +1,8 @@
CTEST_CUSTOM_MAXIMUM_NUMBER_OF_ERRORS
-------------------------------------
The maximum number of errors in a single build step which will be detected.
After this, the :command:`ctest_test` command will truncate the output.
Defaults to 50.
.. include:: CTEST_CUSTOM_XXX.txt

View File

@@ -0,0 +1,8 @@
CTEST_CUSTOM_MAXIMUM_NUMBER_OF_WARNINGS
---------------------------------------
The maximum number of warnings in a single build step which will be detected.
After this, the :command:`ctest_test` command will truncate the output.
Defaults to 50.
.. include:: CTEST_CUSTOM_XXX.txt

View File

@@ -1,6 +1,8 @@
CTEST_CUSTOM_MAXIMUM_PASSED_TEST_OUTPUT_SIZE
--------------------------------------------
Specify the maximum amount of output from a passed test that will
be collected by the :command:`ctest_test` command. If not set,
the default is 1 KiB.
When saving a passing test's output, this is the maximum size, in bytes, that
will be collected by the :command:`ctest_test` command. Defaults to 1024
(1 KiB).
.. include:: CTEST_CUSTOM_XXX.txt

View File

@@ -0,0 +1,7 @@
CTEST_CUSTOM_MEMCHECK_IGNORE
----------------------------
A list of regular expressions to use to exclude tests during the
:command:`ctest_memcheck` command.
.. include:: CTEST_CUSTOM_XXX.txt

View File

@@ -0,0 +1,6 @@
CTEST_CUSTOM_POST_MEMCHECK
--------------------------
A list of commands to run at the end of the :command:`ctest_memcheck` command.
.. include:: CTEST_CUSTOM_XXX.txt

View File

@@ -0,0 +1,6 @@
CTEST_CUSTOM_POST_TEST
----------------------
A list of commands to run at the end of the :command:`ctest_test` command.
.. include:: CTEST_CUSTOM_XXX.txt

View File

@@ -0,0 +1,7 @@
CTEST_CUSTOM_PRE_MEMCHECK
-------------------------
A list of commands to run at the start of the :command:`ctest_memcheck`
command.
.. include:: CTEST_CUSTOM_XXX.txt

View File

@@ -0,0 +1,6 @@
CTEST_CUSTOM_PRE_TEST
----------------------
A list of commands to run at the start of the :command:`ctest_test` command.
.. include:: CTEST_CUSTOM_XXX.txt

View File

@@ -0,0 +1,7 @@
CTEST_CUSTOM_TEST_IGNORE
------------------------
A list of regular expressions to use to exclude tests during the
:command:`ctest_test` command.
.. include:: CTEST_CUSTOM_XXX.txt

View File

@@ -0,0 +1,7 @@
CTEST_CUSTOM_WARNING_EXCEPTION
------------------------------
A list of regular expressions which will be used to exclude when detecting
warning messages in build outputs by the :command:`ctest_test` command.
.. include:: CTEST_CUSTOM_XXX.txt

View File

@@ -0,0 +1,7 @@
CTEST_CUSTOM_WARNING_MATCH
--------------------------
A list of regular expressions which will be used to detect warning messages in
build outputs by the :command:`ctest_test` command.
.. include:: CTEST_CUSTOM_XXX.txt

View File

@@ -0,0 +1,2 @@
It is initialized by :manual:`ctest(1)`, but may be edited in a ``CTestCustom``
file. See :command:`ctest_read_custom_files` documentation.

View File

@@ -0,0 +1,7 @@
CTEST_EXTRA_COVERAGE_GLOB
-------------------------
A list of regular expressions which will be used to find files which should be
covered by the :command:`ctest_coverage` command.
.. include:: CTEST_CUSTOM_XXX.txt