[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
12/43: gnu: mpfr: Skip failing test on the Hurd.
From: |
guix-commits |
Subject: |
12/43: gnu: mpfr: Skip failing test on the Hurd. |
Date: |
Thu, 20 Jul 2023 04:22:27 -0400 (EDT) |
janneke pushed a commit to branch master
in repository guix.
commit eb89957ba4c05db8c97ec7a12b51c29a49290ec5
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Tue Jun 6 11:24:58 2023 +0200
gnu: mpfr: Skip failing test on the Hurd.
* gnu/packages/multiprecision.scm (mpfr)[arguments]: When building natively
on
the Hurd, add 'skip-tests' phase to skip "tsprintf".
---
gnu/packages/multiprecision.scm | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/gnu/packages/multiprecision.scm b/gnu/packages/multiprecision.scm
index 51ba21162c..3aa5dccfab 100644
--- a/gnu/packages/multiprecision.scm
+++ b/gnu/packages/multiprecision.scm
@@ -9,6 +9,7 @@
;;; Copyright © 2018, 2019, 2021, 2023 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2021 Vinicius Monego <monego@posteo.net>
;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
+;;; Copyright © 2023 Janneke Nieuwenhuizen <janneke@gnu.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -126,6 +127,17 @@ It is aimed at use in, for example, cryptography and
computational algebra.")
".tar.xz"))
(sha256 (base32
"14yr4sf4mys64nzbgnd997l6l4n8l9vsjnnvnb0lh4jh2ggpi8q6"))))
+ (arguments
+ (list
+ #:phases (if (system-hurd?)
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'skip-tests
+ (lambda _
+ (substitute*
+ "tests/tsprintf.c"
+ (("(^| )main *\\(.*" all)
+ (string-append all "{\n exit (77);//"))))))
+ #~%standard-phases)))
(build-system gnu-build-system)
(outputs '("out" "debug"))
(propagated-inputs (list gmp)) ; <mpfr.h> refers to <gmp.h>
- 05/43: Revert "gnu: sed: Skip failing test on GNU/Hurd.", (continued)
- 05/43: Revert "gnu: sed: Skip failing test on GNU/Hurd.", guix-commits, 2023/07/20
- 08/43: gnu: gettext-minimal: Remove XFAIL_TESTS for the Hurd., guix-commits, 2023/07/20
- 10/43: gnu: openssl: Build fix for the Hurd., guix-commits, 2023/07/20
- 09/43: gnu: m4: Skip gnulib stack-overflow tests for the Hurd., guix-commits, 2023/07/20
- 11/43: gnu: python: Support native build on the Hurd., guix-commits, 2023/07/20
- 17/43: gnu: libgcrypt: Skip hanging benchmark tests on the Hurd., guix-commits, 2023/07/20
- 20/43: gnu: git: Skip failing test on the Hurd., guix-commits, 2023/07/20
- 02/43: gnu: guile: Skip hanging and failing pipe tests on the Hurd., guix-commits, 2023/07/20
- 06/43: gnu: findutils: Move test-strerror_r from XFAIL to skip on the Hurd., guix-commits, 2023/07/20
- 07/43: gnu: diffutils: Remove test-perror2 from XFAIL_TESTS on the Hurd., guix-commits, 2023/07/20
- 12/43: gnu: mpfr: Skip failing test on the Hurd.,
guix-commits <=
- 13/43: gnu: elfutils: Skip failing tests on the Hurd., guix-commits, 2023/07/20
- 14/43: gnu: libbsd: Skip failing test on the Hurd., guix-commits, 2023/07/20
- 18/43: gnu: tcl: Remove failing tests on the Hurd.., guix-commits, 2023/07/20
- 21/43: gnu: procps: Skip linux-version test for the Hurd., guix-commits, 2023/07/20
- 22/43: gnu: e2fsprogs: Skip failing tests on the Hurd., guix-commits, 2023/07/20
- 23/43: gnu: parted: Disable tests for the Hurd., guix-commits, 2023/07/20
- 24/43: gnu: libpaper: Disable tests for the Hurd., guix-commits, 2023/07/20
- 25/43: gnu: cairo: Support building for the Hurd., guix-commits, 2023/07/20
- 26/43: gnu: openssl-1.1: Fix shared build for the Hurd., guix-commits, 2023/07/20
- 27/43: gnu: ruby-2.6: Skip test on the Hurd., guix-commits, 2023/07/20