[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#64711] [PATCH 35/43] gnu: graphite2: Skip test on the Hurd.
From: |
Janneke Nieuwenhuizen |
Subject: |
[bug#64711] [PATCH 35/43] gnu: graphite2: Skip test on the Hurd. |
Date: |
Tue, 18 Jul 2023 16:40:28 +0200 |
* 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 @@ (define-public graphite2
(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
--
2.40.1
- [bug#64711] [PATCH 26/43] gnu: cairo: Support building for the Hurd., (continued)
- [bug#64711] [PATCH 26/43] gnu: cairo: Support building for the Hurd., Liliana Marie Prikler, 2023/07/18
- [bug#64711] [PATCH 26/43] gnu: cairo: Support building for the Hurd., Janneke Nieuwenhuizen, 2023/07/18
- [bug#64711] [PATCH 26/43] gnu: cairo: Support building for the Hurd., Maxim Cournoyer, 2023/07/18
- [bug#64711] [PATCH 26/43] gnu: cairo: Support building for the Hurd., Janneke Nieuwenhuizen, 2023/07/19
- [bug#64711] [PATCH 26/43] gnu: cairo: Support building for the Hurd., Maxim Cournoyer, 2023/07/19
- [bug#64711] [PATCH 26/43] gnu: cairo: Support building for the Hurd., Janneke Nieuwenhuizen, 2023/07/21
[bug#64711] [PATCH 29/43] gnu: tcsh: Skip substitution tests on the Hurd., Janneke Nieuwenhuizen, 2023/07/18
[bug#64711] [PATCH 38/43] gnu: ghostscript: Fix build for the Hurd., Janneke Nieuwenhuizen, 2023/07/18
[bug#64711] [PATCH 30/43] gnu: swig: Skip tests when building for the Hurd., Janneke Nieuwenhuizen, 2023/07/18
[bug#64711] [PATCH 42/43] gnu: po4a: Skip failing test on the Hurd., Janneke Nieuwenhuizen, 2023/07/18
[bug#64711] [PATCH 35/43] gnu: graphite2: Skip test on the Hurd.,
Janneke Nieuwenhuizen <=
[bug#64711] [PATCH 36/43] gnu: guile-git: Skip http proxy test on the Hurd., Janneke Nieuwenhuizen, 2023/07/18
[bug#64711] [PATCH 28/43] gnu: ruby-2.6: Skip test on the Hurd., Janneke Nieuwenhuizen, 2023/07/18
[bug#64711] [PATCH 40/43] gnu: pango: Support build for the Hurd., Janneke Nieuwenhuizen, 2023/07/18
- [bug#64711] [PATCH 40/43] gnu: pango: Support build for the Hurd., Maxim Cournoyer, 2023/07/18
- [bug#64711] [PATCH 40/43] gnu: pango: Support build for the Hurd., Janneke Nieuwenhuizen, 2023/07/18
- [bug#64711] [PATCH 40/43] gnu: pango: Support build for the Hurd., Maxim Cournoyer, 2023/07/18
- [bug#64711] [PATCH 40/43] gnu: pango: Support build for the Hurd., Janneke Nieuwenhuizen, 2023/07/19
- [bug#64711] [PATCH 40/43] gnu: pango: Support build for the Hurd., Maxim Cournoyer, 2023/07/19
- [bug#64711] [PATCH 40/43] gnu: pango: Support build for the Hurd., Janneke Nieuwenhuizen, 2023/07/19
[bug#64711] [PATCH 37/43] gnu: glib: Disable tests for the Hurd., Janneke Nieuwenhuizen, 2023/07/18