From 0bcf5ac88d22c27b276439e976c81a30b860f313 Mon Sep 17 00:00:00 2001 From: Fabian Homborg Date: Sun, 29 Aug 2021 23:03:23 +0200 Subject: [PATCH] cmake: Use progress output for tests This means instead of printing at least two lines per successful test, we overwrite one line again and again with the current status, and for *failed* (i.e interesting) tests we print the output. Makes test failures much more visible. --- cmake/Tests.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/Tests.cmake b/cmake/Tests.cmake index 4af559bc1..f0a041080 100644 --- a/cmake/Tests.cmake +++ b/cmake/Tests.cmake @@ -36,7 +36,7 @@ endif() add_custom_target(test COMMAND env CTEST_PARALLEL_LEVEL=${CTEST_PARALLEL_LEVEL} ${CMAKE_CTEST_COMMAND} --force-new-ctest-process - --output-on-failure + --output-on-failure --progress DEPENDS fish_tests tests_buildroot_target USES_TERMINAL )