[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
45/67: gnu: graphite2: Skip test on the Hurd.
From: |
guix-commits |
Subject: |
45/67: gnu: graphite2: Skip test on the Hurd. |
Date: |
Tue, 18 Jul 2023 10:16:09 -0400 (EDT) |
janneke pushed a commit to branch hurd-team
in repository guix.
commit 654dbee6631bb871dfd1cc96d6e8806900ef8ad4
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 e5170b5ae3..64b15fbf05 100644
--- a/gnu/packages/fontutils.scm
+++ b/gnu/packages/fontutils.scm
@@ -17,6 +17,7 @@
;;; Copyright © 2022 Felipe Balbi <balbi@kernel.org>
;;; Copyright © 2023 gemmaro <gemmaro.dev@gmail.com>
;;; Copyright © 2023 John Kehayias <john.kehayias@protonmail.com>
+;;; Copyright © 2023 Janneke Nieuwenhuizen <janneke@gnu.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1369,6 +1370,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
- branch hurd-team created (now b20f928d3a), guix-commits, 2023/07/18
- 08/67: gnu: mig: Update to 1.8+git20230520., guix-commits, 2023/07/18
- 18/67: hurd: Support system init in /libexec/runsystem., guix-commits, 2023/07/18
- 20/67: gnu: openssl: Build fix for the Hurd., guix-commits, 2023/07/18
- 38/67: gnu: ruby-2.6: Skip test on the Hurd., guix-commits, 2023/07/18
- 32/67: gnu: procps: Skip linux-version test for the Hurd., guix-commits, 2023/07/18
- 41/67: gnu: zstd: Skip tests when building for the Hurd., guix-commits, 2023/07/18
- 45/67: gnu: graphite2: Skip test on the Hurd.,
guix-commits <=
- 54/67: system: hurd: Add procps to %base-packages/hurd., guix-commits, 2023/07/18
- 16/67: gnu: gettext-minimal: Remove XFAIL_TESTS for the Hurd., guix-commits, 2023/07/18
- 27/67: gnu: libgcrypt: Skip hanging benchmark tests on the Hurd., guix-commits, 2023/07/18
- 25/67: gnu: c-ares: Skip failing tests on the Hurd., guix-commits, 2023/07/18
- 03/67: gnu: commencement: Add git-fetch-from-tarball utility., guix-commits, 2023/07/18
- 65/67: DRAFT system: examples: Add devel-hurd.tmpl., guix-commits, 2023/07/18
- 10/67: gnu: guile: Skip hanging and failing pipe tests on the Hurd., guix-commits, 2023/07/18
- 04/67: gnu: commencement: gnumach-headers-boot0: Update to 1.8+git20221224., guix-commits, 2023/07/18
- 43/67: gnu: cmake-minimal: Skip tests on the Hurd., guix-commits, 2023/07/18
- 05/67: gnu: commencement: mig-boot0: Update to 1.8+git20230520., guix-commits, 2023/07/18