gnu: icu4c: Skip tests on i686.
* gnu/packages/icu4c.scm (icu4c)[arguments]: On i686-linux, set #:tests? #f.
This commit is contained in:
parent
944a3a8b8e
commit
e65b2181e8
1 changed files with 6 additions and 0 deletions
|
@ -55,6 +55,12 @@
|
||||||
(string-prefix? "mips" s)))
|
(string-prefix? "mips" s)))
|
||||||
'("--with-data-packaging=archive")
|
'("--with-data-packaging=archive")
|
||||||
'()))
|
'()))
|
||||||
|
,@(if (string-prefix? "i686" (or (%current-target-system)
|
||||||
|
(%current-system)))
|
||||||
|
;; FIXME: Some tests are failing on i686:
|
||||||
|
;; <https://unicode-org.atlassian.net/browse/ICU-20080>.
|
||||||
|
'(#:tests? #f)
|
||||||
|
'())
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'chdir-to-source
|
(add-after 'unpack 'chdir-to-source
|
||||||
|
|
Reference in a new issue