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
|
@ -55,6 +55,12 @@
|
|||
(string-prefix? "mips" s)))
|
||||
'("--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
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'chdir-to-source
|
||||
|
|
Loading…
Reference in New Issue