Skip to content
Snippets Groups Projects
Commit d3a33fe2 authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

gnu: eigen: Run 'ctest' in verbose mode.

* gnu/packages/algebra.scm (eigen)[arguments]: Add "-V" in
  'EIGEN_CTEST_ARGS'.
parent 354f4fe2
No related branches found
No related tags found
No related merge requests found
...@@ -422,7 +422,11 @@ (define-public eigen ...@@ -422,7 +422,11 @@ (define-public eigen
(dash-j (format #f "-j~a" cores))) (dash-j (format #f "-j~a" cores)))
;; These variables are supposed to be honored. ;; These variables are supposed to be honored.
(setenv "EIGEN_MAKE_ARGS" dash-j) (setenv "EIGEN_MAKE_ARGS" dash-j)
(setenv "EIGEN_CTEST_ARGS" dash-j)
;; Use '-V' to get more details in case of test
;; failures.
(setenv "EIGEN_CTEST_ARGS"
(string-append "-V " dash-j))
(zero? (system* "make" "buildtests" dash-j)))))))) (zero? (system* "make" "buildtests" dash-j))))))))
(home-page "http://eigen.tuxfamily.org") (home-page "http://eigen.tuxfamily.org")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment