Browse Source
gnu: eigen: Throw exceptions on test failure.
* gnu/packages/algebra.scm (eigen)[arguments]: Substitute INVOKE for
SYSTEM*.
wip-ipfs
Tobias Geerinckx-Rice
4 years ago
No known key found for this signature in database
GPG Key ID: DB0FF884F556D79
1 changed files with
4 additions and
4 deletions
-
gnu/packages/algebra.scm
|
|
@ -740,11 +740,11 @@ Sine Transform} (DST) and @dfn{Discrete Hartley Transform} (DHT).") |
|
|
|
(setenv "EIGEN_SEED" "1") ;for reproducibility |
|
|
|
;; First build the tests, in parallel. See |
|
|
|
;; <http://eigen.tuxfamily.org/index.php?title=Tests>. |
|
|
|
(and (zero? (system* "make" "buildtests" dash-j)) |
|
|
|
(invoke "make" "buildtests" dash-j) |
|
|
|
|
|
|
|
;; Then run 'CTest' with -V so we get more |
|
|
|
;; details upon failure. |
|
|
|
(zero? (system* "ctest" "-V" dash-j))))))))) |
|
|
|
;; Then run 'CTest' with -V so we get more |
|
|
|
;; details upon failure. |
|
|
|
(invoke "ctest" "-V" dash-j))))))) |
|
|
|
(home-page "https://eigen.tuxfamily.org") |
|
|
|
(synopsis "C++ template library for linear algebra") |
|
|
|
(description |
|
|
|