summary refs log tree commit diff
diff options
context:
space:
mode:
authorHartmut Goebel <h.goebel@crazy-compilers.com>2016-10-08 14:26:36 +0200
committerHartmut Goebel <h.goebel@crazy-compilers.com>2016-11-15 22:40:25 +0100
commitcaa9b834e75ec75e4c82d8abf8502be72c93a48e (patch)
treed4d4ee9f92fe3440ced20af266a1c805db3f141f
parent86f4e9d76a75c405b3b6c5b3f1717df0e45f4e68 (diff)
downloadguix-caa9b834e75ec75e4c82d8abf8502be72c93a48e.tar.gz
guxi: cmake-build-system: Enable output for failing test-cases.
* guix/build/cmake-build-system.scm (cmake-build-system): Set
  environment variable CTEST_OUTPUT_ON_FAILURE to an non-empty value.
-rw-r--r--guix/build/cmake-build-system.scm1
1 files changed, 1 insertions, 0 deletions
diff --git a/guix/build/cmake-build-system.scm b/guix/build/cmake-build-system.scm
index f57622e0f4..27f2b5c872 100644
--- a/guix/build/cmake-build-system.scm
+++ b/guix/build/cmake-build-system.scm
@@ -66,6 +66,7 @@
 (define* (check #:key (tests? #t) (parallel-tests? #t) (test-target "test")
                 #:allow-other-keys)
   (let ((gnu-check (assoc-ref gnu:%standard-phases 'check)))
+    (setenv "CTEST_OUTPUT_ON_FAILURE" "1")
     (gnu-check #:tests? tests? #:test-target test-target
               #:parallel-tests? parallel-tests?)))