CTEST_PROGRESS_OUTPUT.rst 790 B

123456789101112131415161718
  1. CTEST_PROGRESS_OUTPUT
  2. ---------------------
  3. .. versionadded:: 3.13
  4. .. include:: include/ENV_VAR.rst
  5. Boolean environment variable that affects how :manual:`ctest <ctest(1)>`
  6. command output reports overall progress. When set to ``1``, ``TRUE``, ``ON`` or anything
  7. else that evaluates to boolean true, progress is reported by repeatedly
  8. updating the same line. This greatly reduces the overall verbosity, but is
  9. only supported when output is sent directly to a terminal. If the environment
  10. variable is not set or has a value that evaluates to false, output is reported
  11. normally with each test having its own start and end lines logged to the
  12. output.
  13. The :option:`--progress <ctest --progress>` option to :manual:`ctest <ctest(1)>`
  14. overrides this environment variable if both are given.