From 0e87174b5e11f235d57bdba0c750524cca0c059e Mon Sep 17 00:00:00 2001 From: John Date: Sat, 11 Jul 2020 13:41:02 +0200 Subject: [PATCH] build-style/cmake: set CTEST_OUTPUT_ON_FAILURE=TRUE in do_check Currently a failed output has to be found somewhere in the build directory, having it output also to stdout makes it far easier to see why it failed --- common/build-style/cmake.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/build-style/cmake.sh b/common/build-style/cmake.sh index da1f663533..ef0715ef2e 100644 --- a/common/build-style/cmake.sh +++ b/common/build-style/cmake.sh @@ -91,7 +91,7 @@ do_check() { : ${make_cmd:=make} : ${make_check_target:=test} - ${make_cmd} ${make_check_args} ${make_check_target} + CTEST_OUTPUT_ON_FAILURE=TRUE ${make_cmd} ${make_check_args} ${make_check_target} } do_install() {