[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
72/89: gnu: graphite2: Skip test on the Hurd.
From: |
guix-commits |
Subject: |
72/89: gnu: graphite2: Skip test on the Hurd. |
Date: |
Tue, 20 Jun 2023 05:59:01 -0400 (EDT) |
janneke pushed a commit to branch hurd-team
in repository guix.
commit e346e534fdc8c575d0d455b9b717556ec2380c2d
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Tue Jun 13 08:35:57 2023 +0200
gnu: graphite2: Skip test on the Hurd.
* gnu/packages/fontutils.scm (graphite2)[arguments]: When building natively
on
the Hurd, replace phase 'check' to set make-flags to skip "awamicmp3" test.
---
gnu/packages/fontutils.scm | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm
index 1b4e0064f4..3aecb37ab2 100644
--- a/gnu/packages/fontutils.scm
+++ b/gnu/packages/fontutils.scm
@@ -16,6 +16,7 @@
;;; Copyright © 2021 Sarah Morgensen <iskarian@mgsn.dev>
;;; Copyright © 2022 Felipe Balbi <balbi@kernel.org>
;;; Copyright © 2023 gemmaro <gemmaro.dev@gmail.com>
+;;; Copyright © 2023 Janneke Nieuwenhuizen <janneke@gnu.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1358,6 +1359,25 @@ applications should be.")
(list python python-fonttools-minimal))
(inputs
(list freetype))
+ (arguments
+ (if (system-hurd?)
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (replace 'check
+ ;; cmake-build-system ignores #:make-flags for make check
+ (lambda* (#:key test-target tests? parallel-tests?
+ #:allow-other-keys)
+ (if tests?
+ (let ((jobs (if parallel-tests?
+ (number->string (parallel-job-count))
+ "1")))
+ (invoke "make"
+ (string-append
+ "ARGS=-j " jobs " --exclude-regex ^awamicmp3$")
+ test-target))
+ (format #t "test suite not run~%"))))))
+ '()))
(synopsis "Reimplementation of the SIL Graphite text processing engine")
(description
"Graphite2 is a reimplementation of the SIL Graphite text processing
- 47/89: gnu: openssl: Build fix for the Hurd., (continued)
- 47/89: gnu: openssl: Build fix for the Hurd., guix-commits, 2023/06/20
- 50/89: gnu: elfutils: Skip failing tests on the Hurd., guix-commits, 2023/06/20
- 40/89: Revert "gnu: sed: Skip failing test on GNU/Hurd.", guix-commits, 2023/06/20
- 65/89: gnu: ruby-2.6: Skip test on the Hurd., guix-commits, 2023/06/20
- 61/89: gnu: parted: Disable tests for the Hurd., guix-commits, 2023/06/20
- 68/89: gnu: zstd: Skip tests when building for the Hurd., guix-commits, 2023/06/20
- 60/89: gnu: e2fsprogs: Skip failing tests on the Hurd., guix-commits, 2023/06/20
- 59/89: gnu: procps: Skip linux-version test for the Hurd., guix-commits, 2023/06/20
- 70/89: gnu: cmake-minimal: Skip tests on the Hurd., guix-commits, 2023/06/20
- 46/89: hurd-boot: Support system init: Create essential device nodes., guix-commits, 2023/06/20
- 72/89: gnu: graphite2: Skip test on the Hurd.,
guix-commits <=
- 74/89: gnu: glib: Disable tests for the Hurd., guix-commits, 2023/06/20
- 77/89: gnu: pango: Support build for the Hurd., guix-commits, 2023/06/20
- 85/89: gnu: guix: Disable some tests on the Hurd., guix-commits, 2023/06/20
- 89/89: DRAFT system: examples: Add devel-hurd.tmpl., guix-commits, 2023/06/20