gnu: imath: Skip tests when cross-compiling.

* gnu/packages/graphics.scm (imath)[arguments]: Adjust #:tests? to skip
tests when cross-compiling.
This commit is contained in:
Efraim Flashner 2023-07-09 10:22:36 +03:00
parent 7ba92bd38f
commit ee8cdd3b58
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -824,7 +824,8 @@ (define-public imath
;; precision), as was discussed and patched long ago:
;; <https://issues.guix.gnu.org/22049>. It seems the relevant fixes
;; didn't make it upstream, so skip tests.
(list #:tests? (not (target-x86-32?))))
(list #:tests? (not (or (target-x86-32?)
(%current-target-system)))))
(home-page "https://github.com/AcademySoftwareFoundation/Imath")
(synopsis "Library of math operations for computer graphics")
(description