[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
20/43: gnu: git: Skip failing test on the Hurd.
From: |
guix-commits |
Subject: |
20/43: gnu: git: Skip failing test on the Hurd. |
Date: |
Thu, 20 Jul 2023 04:22:28 -0400 (EDT) |
janneke pushed a commit to branch master
in repository guix.
commit 6da096879c125ed7d5f2ee6c8392e63320f5949b
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Thu Jun 8 07:15:07 2023 +0200
gnu: git: Skip failing test on the Hurd.
* gnu/packages/version-control.scm (git)[arguments]: When building natively
on
the Hurd, add stage 'delete-tests/hurd'.
---
gnu/packages/version-control.scm | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index ecdb1d1781..2f70655ac1 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -28,7 +28,7 @@
;;; Copyright © 2020 Roel Janssen <roel@gnu.org>
;;; Copyright © 2020, 2021 Brice Waegeneire <brice@waegenei.re>
;;; Copyright © 2020 John D. Boy <jboy@bius.moe>
-;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
+;;; Copyright © 2020, 2023 Janneke Nieuwenhuizen <janneke@gnu.org>
;;; Copyright © 2020, 2021, 2022, 2023 Vinicius Monego <monego@posteo.net>
;;; Copyright © 2020 Tanguy Le Carrour <tanguy@bioneland.org>
;;; Copyright © 2020, 2021, 2022 Michael Rohleder <mike@rohleder.de>
@@ -570,7 +570,14 @@ Python 3.3 and later, rather than on Python 2.")
(manpages (assoc-ref inputs "git-manpages")))
(mkdir-p man)
(with-directory-excursion man
- (invoke "tar" "xvf" manpages))))))))
+ (invoke "tar" "xvf" manpages)))))
+ ,@(if (system-hurd?)
+ '((add-after 'unpack 'delete-tests/hurd
+ (lambda _
+ (delete-file "t/t0052-simple-ipc.sh")
+ (delete-file "t/t5562-http-backend-content-length.sh")
+ (delete-file "t/t9902-completion.sh"))))
+ '()))))
(native-search-paths
;; For HTTPS access, Git needs a single-file certificate bundle, specified
- branch master updated (cf1216d876 -> 6547d3852b), guix-commits, 2023/07/20
- 01/43: Revert "gnu: libunistring: Fix make check for the Hurd.", guix-commits, 2023/07/20
- 03/43: gnu: coreutils: Skip hanging and failing test on the Hurd., guix-commits, 2023/07/20
- 04/43: gnu: grep: Update hanging and failing tests on the Hurd., guix-commits, 2023/07/20
- 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 <=
- 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, 2023/07/20
- 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