guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

15/24: gnu: icu4c: Skip tests on riscv64-linux.


From: guix-commits
Subject: 15/24: gnu: icu4c: Skip tests on riscv64-linux.
Date: Fri, 20 Aug 2021 10:20:38 -0400 (EDT)

efraim pushed a commit to branch wip-riscv
in repository guix.

commit 5e44c9f3f05d0c8b8bb9a5b8551be8945e093030
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sun Aug 8 11:48:59 2021 +0300

    gnu: icu4c: Skip tests on riscv64-linux.
    
    * gnu/packages/icu4c.scm (icu4c)[arguments]: Add phase to skip failing
    test on riscv64-linux.
---
 gnu/packages/icu4c.scm | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/gnu/packages/icu4c.scm b/gnu/packages/icu4c.scm
index 0d5f34a..13db71a 100644
--- a/gnu/packages/icu4c.scm
+++ b/gnu/packages/icu4c.scm
@@ -80,6 +80,14 @@
               (("LDFLAGSICUDT=-nodefaultlibs -nostdlib")
                "LDFLAGSICUDT="))
             #t))
+        ,@(if (target-riscv?)
+            `((add-after 'unpack 'disable-failing-test
+                ;; It is unknown why this test is failing.
+                (lambda _
+                  (substitute* "source/test/intltest/numbertest_api.cpp"
+                    (("(TESTCASE_AUTO\\(unitUsage\\));" all)
+                     (string-append "//" all))))))
+            '())
         (add-after 'install 'avoid-coreutils-reference
           ;; Don't keep a reference to the build tools.
           (lambda* (#:key outputs #:allow-other-keys)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]