mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: eigen: Run 'ctest' in verbose mode.
* gnu/packages/algebra.scm (eigen)[arguments]: Add "-V" in 'EIGEN_CTEST_ARGS'.
This commit is contained in:
parent
354f4fe292
commit
d3a33fe28d
1 changed files with 5 additions and 1 deletions
|
@ -422,7 +422,11 @@ (define-public eigen
|
|||
(dash-j (format #f "-j~a" cores)))
|
||||
;; These variables are supposed to be honored.
|
||||
(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))))))))
|
||||
(home-page "http://eigen.tuxfamily.org")
|
||||
|
|
Loading…
Reference in a new issue