From e526f5f0af5553d694fd4d33f8acfc282cd966b8 Mon Sep 17 00:00:00 2001 From: Lars Bilke Date: Mon, 8 Apr 2024 08:34:46 +0200 Subject: [PATCH] Revert "[ctest] 1 GB output limit." This reverts commit 7ae4794c0a5775f88ce4e109ceda0a3f4d2926e9. Do not know why we enabled this. Default value is 300 KiB which should be fine. Also by default the tail of the output is saved. --- scripts/cmake/test/CTestCustom.in.cmake | 4 ---- 1 file changed, 4 deletions(-) diff --git a/scripts/cmake/test/CTestCustom.in.cmake b/scripts/cmake/test/CTestCustom.in.cmake index 01dc0a6a286..141a37b4ba1 100644 --- a/scripts/cmake/test/CTestCustom.in.cmake +++ b/scripts/cmake/test/CTestCustom.in.cmake @@ -10,7 +10,3 @@ foreach(line IN LISTS LINES) # and write the (changed) line ... file(APPEND "@PROJECT_BINARY_DIR@/CTestTestfile.cmake" "${STRIPPED}\n") endforeach() - -# Limit test output to 1 GB to prevent lower default limit in Dash-mode -set(CTEST_CUSTOM_MAXIMUM_FAILED_TEST_OUTPUT_SIZE 1073741824) -set(CTEST_CUSTOM_MAXIMUM_PASSED_TEST_OUTPUT_SIZE 1073741824)