[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: icu4c: Skip tests on i686.
From: |
Marius Bakke |
Subject: |
01/01: gnu: icu4c: Skip tests on i686. |
Date: |
Fri, 5 Oct 2018 13:15:10 -0400 (EDT) |
mbakke pushed a commit to branch core-updates
in repository guix.
commit e65b2181e8b436278e3dd0b405602a400fbd0a75
Author: Marius Bakke <address@hidden>
Date: Fri Oct 5 19:05:39 2018 +0200
gnu: icu4c: Skip tests on i686.
* gnu/packages/icu4c.scm (icu4c)[arguments]: On i686-linux, set #:tests? #f.
---
gnu/packages/icu4c.scm | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/gnu/packages/icu4c.scm b/gnu/packages/icu4c.scm
index cbba9aa..2d28107 100644
--- a/gnu/packages/icu4c.scm
+++ b/gnu/packages/icu4c.scm
@@ -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