mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: perl-unicode-utf8: Run tests conditionally.
* gnu/packages/perl.scm (perl-unicode-utf8)[arguments]<#:tests?>: Set to #false when cross-compiling. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
parent
1879d6d810
commit
58d5d83dbb
1 changed files with 2 additions and 1 deletions
|
@ -11007,7 +11007,8 @@ (define-public perl-unicode-utf8
|
|||
(build-system perl-build-system)
|
||||
;; FIXME: Tests fail on 32-bit architectures:
|
||||
;; <https://rt.cpan.org/Public/Bug/Display.html?id=127007>.
|
||||
(arguments `(#:tests? ,(target-64bit?)))
|
||||
(arguments `(#:tests? ,(and (not (%current-target-system))
|
||||
(target-64bit?))))
|
||||
(native-inputs
|
||||
(list perl-test-fatal perl-test-leaktrace perl-variable-magic
|
||||
perl-test-pod))
|
||||
|
|
Loading…
Reference in a new issue