From 1c296eda962e0b9bcbf8d6b9a126a8cc843c74d9 Mon Sep 17 00:00:00 2001
From: Lars Bilke <lars.bilke@ufz.de>
Date: Thu, 2 May 2024 09:16:31 +0200
Subject: [PATCH] [ctest] Limit output of failed tests to 25 kB.

Applies to ctest build targets only (e.g. `ninja ctest`).
---
 scripts/cmake/test/Test.cmake | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/scripts/cmake/test/Test.cmake b/scripts/cmake/test/Test.cmake
index d20fb8e3025..6d0b42d44e6 100644
--- a/scripts/cmake/test/Test.cmake
+++ b/scripts/cmake/test/Test.cmake
@@ -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()
-- 
GitLab