diff options
author | Brad King <brad.king@kitware.com> | 2015-09-21 13:25:24 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2015-09-21 13:25:24 (GMT) |
commit | 82a0c7be3f6a00119f3ba00b0d1a4f73cbbb140c (patch) | |
tree | 88c11a1cfd7d22ec16d0abda2937c9fbc2b5dff8 /Help/manual | |
parent | 358b56414563d2100bbbb6e482e8441d29fa8f55 (diff) | |
parent | fd47df45030733341858fa33ee96015d64c73c03 (diff) | |
download | CMake-82a0c7be3f6a00119f3ba00b0d1a4f73cbbb140c.zip CMake-82a0c7be3f6a00119f3ba00b0d1a4f73cbbb140c.tar.gz CMake-82a0c7be3f6a00119f3ba00b0d1a4f73cbbb140c.tar.bz2 |
Merge topic 'ctest-custom-output-size'
fd47df45 CTest: Add options to limit output of passed and failed tests
6e3151f6 CTest: Document and test custom output size settings
Diffstat (limited to 'Help/manual')
-rw-r--r-- | Help/manual/cmake-variables.7.rst | 2 | ||||
-rw-r--r-- | Help/manual/ctest.1.rst | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/Help/manual/cmake-variables.7.rst b/Help/manual/cmake-variables.7.rst index e0dbdeb..660d544 100644 --- a/Help/manual/cmake-variables.7.rst +++ b/Help/manual/cmake-variables.7.rst @@ -374,6 +374,8 @@ Variables for CTest /variable/CTEST_COVERAGE_COMMAND /variable/CTEST_COVERAGE_EXTRA_FLAGS /variable/CTEST_CURL_OPTIONS + /variable/CTEST_CUSTOM_MAXIMUM_FAILED_TEST_OUTPUT_SIZE + /variable/CTEST_CUSTOM_MAXIMUM_PASSED_TEST_OUTPUT_SIZE /variable/CTEST_CVS_CHECKOUT /variable/CTEST_CVS_COMMAND /variable/CTEST_CVS_UPDATE_OPTIONS diff --git a/Help/manual/ctest.1.rst b/Help/manual/ctest.1.rst index 50c856a..2fdf7f3 100644 --- a/Help/manual/ctest.1.rst +++ b/Help/manual/ctest.1.rst @@ -302,6 +302,12 @@ Options ``--test-command`` The test to run with the --build-and-test option. +``--test-output-size-passed <size>`` + Limit the output for passed tests to <size> bytes. + +``--test-output-size-failed <size>`` + Limit the output for failed tests to <size> bytes. + ``--test-timeout`` The time limit in seconds, internal use only. |