~ruther/guix-local

caa9b834e75ec75e4c82d8abf8502be72c93a48e — Hartmut Goebel 9 years ago 86f4e9d
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.
1 files changed, 1 insertions(+), 0 deletions(-)

M guix/build/cmake-build-system.scm
M guix/build/cmake-build-system.scm => guix/build/cmake-build-system.scm +1 -0
@@ 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?)))