diff options
author | Roman Wüger <roman.wueger@gmx.at> | 2015-09-17 15:06:27 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-09-18 15:32:06 (GMT) |
commit | fd47df45030733341858fa33ee96015d64c73c03 (patch) | |
tree | d763169672205165693ac1afb9ff3af525bd2681 /Help/manual/ctest.1.rst | |
parent | 6e3151f6ccd035ffd704d3cb0162c873d5e95e15 (diff) | |
download | CMake-fd47df45030733341858fa33ee96015d64c73c03.zip CMake-fd47df45030733341858fa33ee96015d64c73c03.tar.gz CMake-fd47df45030733341858fa33ee96015d64c73c03.tar.bz2 |
CTest: Add options to limit output of passed and failed tests
Add ctest command-line options:
--test-output-size-passed <n>
--test-output-size-failed <n>
to set the amount of test output to store in Test.xml as a command-line
dashboard client.
Diffstat (limited to 'Help/manual/ctest.1.rst')
-rw-r--r-- | Help/manual/ctest.1.rst | 6 |
1 files changed, 6 insertions, 0 deletions
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. |