Skip to content
Snippets Groups Projects
Commit aa8498a1 authored by Lars Bilke's avatar Lars Bilke
Browse files

Merge branch 'limit-ctest-output' into 'master'

[ctest,ci] Limit output of failed tests to 25 kB

See merge request ogs/ogs!4993
parents e216ba2d 1c296eda
No related branches found
No related tags found
No related merge requests found
......@@ -48,7 +48,10 @@ NotebookTest(
TRUE
)
set(_ctest_parameter -T Test --force-new-ctest-process --output-on-failure)
# output 25 kb of tailed logs on failure
set(_ctest_parameter -T Test --force-new-ctest-process --output-on-failure
--test-output-size-failed 25
)
if(CMAKE_CONFIGURATION_TYPES)
list(APPEND _ctest_parameter --build-config "$<CONFIGURATION>")
endif()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment