From 8526bdb4e37223d674813bb6b31b62cb582d6185 Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Thu, 22 Aug 2019 21:32:15 +0100 Subject: [PATCH] Export CTEST_OUTPUT_ON_FAILURE=1 When a `ctest` run contains a failed test, actually print the `stdout` and `stderr` output. --- zshenv | 2 ++ 1 file changed, 2 insertions(+) diff --git a/zshenv b/zshenv index 815423a..ca56668 100644 --- a/zshenv +++ b/zshenv @@ -50,6 +50,8 @@ export LESS_TERMCAP_ue=`printf "\e[0m"` export GTEST_COLOR=yes # Allow completions for GoogleTest break on failure export GTEST_BREAK_ON_FAILURE=0 +# Force CTest to verbose output +export CTEST_OUTPUT_ON_FAILURE=1 # Disable virtualenv prompt VIRTUAL_ENV_DISABLE_PROMPT=1