[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
49/84: gnu: mpfr: Skip failing test for the Hurd.
From: |
guix-commits |
Subject: |
49/84: gnu: mpfr: Skip failing test for the Hurd. |
Date: |
Wed, 14 Jun 2023 06:23:59 -0400 (EDT) |
janneke pushed a commit to branch wip-hurd
in repository guix.
commit 3fe3bd2903372402ac9ca1ed0b50366f2033a12e
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Tue Jun 6 11:24:58 2023 +0200
gnu: mpfr: Skip failing test for the Hurd.
* gnu/packages/multiprecision.scm (mpfr)[arguments]: When building for the
Hurd, add 'skip-tests' phase to skip tsprintf.
c
---
gnu/packages/multiprecision.scm | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/gnu/packages/multiprecision.scm b/gnu/packages/multiprecision.scm
index 51ba21162c..6e2006db4f 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 (target-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>
- 60/84: gnu: e2fsprogs: Skip failing tests for the Hurd., (continued)
- 60/84: gnu: e2fsprogs: Skip failing tests for the Hurd., guix-commits, 2023/06/14
- 83/84: DRAFT hurd-boot: Support second boot., guix-commits, 2023/06/14
- 84/84: DRAFT system: examples: Add devel-hurd.tmpl., guix-commits, 2023/06/14
- 65/84: gnu: ruby-2.6: Skip test for the Hurd., guix-commits, 2023/06/14
- 81/84: system: hurd: Add procps to %base-packages/hurd., guix-commits, 2023/06/14
- 17/84: gnu: hurd-minimal: Include libshouldbeinlibc and libstore., guix-commits, 2023/06/14
- 02/84: gnu: glibc/hurd-headers: Properly cross-build., guix-commits, 2023/06/14
- 33/84: gnu: commencement: mig-boot0: Update to 1.8+git20230520., guix-commits, 2023/06/14
- 35/84: gnu: commencement: hurd-minimal-boot0: Update to 0.9.git20230216., guix-commits, 2023/06/14
- 44/84: gnu: m4: Skip gnulib stack-overflow tests for the Hurd., guix-commits, 2023/06/14
- 49/84: gnu: mpfr: Skip failing test for the Hurd.,
guix-commits <=
- 55/84: gnu: tcl: Remove failing tests for the Hurd.., guix-commits, 2023/06/14
- 80/84: gnu: guile-2.0: Skip failing tests for the Hurd., guix-commits, 2023/06/14
- 61/84: gnu: parted: Disable tests for the Hurd., guix-commits, 2023/06/14
- 63/84: gnu: cairo: Support building for the Hurd., guix-commits, 2023/06/14
- 73/84: gnu: guile-git: Skip http proxy test for the Hurd., guix-commits, 2023/06/14