[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
38/92: gnu: coreutils: Skip hanging and failing test on the Hurd.
From: |
guix-commits |
Subject: |
38/92: gnu: coreutils: Skip hanging and failing test on the Hurd. |
Date: |
Fri, 23 Jun 2023 12:45:41 -0400 (EDT) |
janneke pushed a commit to branch hurd-team
in repository guix.
commit ac9aebc24f77db6183fbba3cc56b693d6b311300
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Wed May 31 17:51:30 2023 +0200
gnu: coreutils: Skip hanging and failing test on the Hurd.
* gnu/packages/base.scm (coreutils)[arguments]: When building natively on
the
Hurd, remove "test/df/unreadable.sh" and "test-perror2" from #:make-flags's
XFAIL_TESTS as they now pass. Move failing script tests from XFAIL_TESTS to
'remove-tests' phase. In phase 'remove-tests' rewrite substitute* to skip
tests instead of removing them. Add hanging and failing tests.
---
gnu/packages/base.scm | 47 +++++++++++++++++++++++++++++++----------------
1 file changed, 31 insertions(+), 16 deletions(-)
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm
index 86e7f0bcdc..550be1a931 100644
--- a/gnu/packages/base.scm
+++ b/gnu/packages/base.scm
@@ -398,23 +398,13 @@ used to apply commands with arbitrarily long arguments.")
(outputs '("out" "debug"))
(arguments
`(#:parallel-build? #f ; help2man may be called too early
- ,@(if (target-hurd?)
+ ,@(if (system-hurd?)
'(#:make-flags ; these tests fail deterministically
- (list (string-append "XFAIL_TESTS=tests/misc/env-S.pl"
- " tests/misc/kill.sh"
- " tests/misc/nice.sh"
- " tests/misc/pwd-long.sh"
- " tests/split/fail.sh"
-
- ;; /hurd/fifo issue:
- ;; <https://issues.guix.gnu.org/58803>.
- " tests/df/unreadable.sh"
-
+ (list (string-append "XFAIL_TESTS="
;; Gnulib tests.
" test-fdutimensat"
" test-futimens"
" test-linkat"
- " test-perror2"
" test-renameat"
" test-renameatu"
" test-utimensat")))
@@ -436,10 +426,35 @@ used to apply commands with arbitrarily long arguments.")
(("#!/bin/sh") (string-append "#!" (which "sh"))))))
(add-after 'unpack 'remove-tests
(lambda _
- ,@(if (target-hurd?)
- '((substitute* "Makefile.in"
- ;; this test hangs
- (("^ *tests/misc/timeout-group.sh.*") ""))
+ ,@(if (system-hurd?)
+ '((substitute*
+ ;; These tests hang
+ '("tests/cp/sparse-to-pipe.sh"
+ "tests/split/fail.sh"
+ ;; These tests error
+ "tests/dd/nocache.sh"
+ ;; These tests fail
+ "tests/cp/sparse.sh"
+ "tests/cp/special-f.sh"
+ "tests/dd/bytes.sh"
+ "tests/dd/stats.sh"
+ "tests/ls/dangle.sh"
+ "tests/ls/follow-slink.sh"
+ "tests/ls/hyperlink.sh"
+ "tests/ls/infloop.sh"
+ "tests/ls/inode.sh"
+ "tests/ls/selinux-segfault.sh"
+ "tests/misc/env-S.pl"
+ "tests/misc/factor-parallel.sh"
+ "tests/misc/ls-misc.pl"
+ "tests/misc/nice.sh"
+ "tests/misc/pwd-long.sh"
+ "tests/misc/shred-passes.sh"
+ "tests/misc/stat-slash.sh"
+ "tests/rm/fail-eperm.xpl"
+ "tests/split/filter.sh")
+ (("^#!.*" all)
+ (string-append all "exit 77;\n")))
(substitute* "gnulib-tests/Makefile.in"
;; This test sometimes fails and sometimes
;; passes, but it does this consistently, so
- 35/92: gnu: commencement: hurd-minimal-boot0: Update to 0.9.git20230216., (continued)
- 35/92: gnu: commencement: hurd-minimal-boot0: Update to 0.9.git20230216., guix-commits, 2023/06/23
- 50/92: gnu: elfutils: Skip failing tests on the Hurd., guix-commits, 2023/06/23
- 51/92: gnu: libbsd: Skip failing test on the Hurd., guix-commits, 2023/06/23
- 29/92: gnu: gnumach: Disable builtin networking., guix-commits, 2023/06/23
- 30/92: gnu: commencement: Add autoconf-boot0., guix-commits, 2023/06/23
- 34/92: gnu: commencement: hurd-headers-boot0: Update to 0.9.git20230216., guix-commits, 2023/06/23
- 22/92: system: hurd: Boot with pci.arbiter and rumpdisk., guix-commits, 2023/06/23
- 27/92: system: hurd: Add netdde to %base-packages/hurd., guix-commits, 2023/06/23
- 36/92: Revert "gnu: libunistring: Fix make check for the Hurd.", guix-commits, 2023/06/23
- 37/92: gnu: guile: Skip hanging and failing pipe tests on the Hurd., guix-commits, 2023/06/23
- 38/92: gnu: coreutils: Skip hanging and failing test on the Hurd.,
guix-commits <=
- 39/92: gnu: grep: Update hanging and failing tests on the Hurd., guix-commits, 2023/06/23
- 40/92: Revert "gnu: sed: Skip failing test on GNU/Hurd.", guix-commits, 2023/06/23
- 41/92: gnu: findutils: Move test-strerror_r from XFAIL to skip on the Hurd., guix-commits, 2023/06/23
- 42/92: gnu: diffutils: Remove test-perror2 from XFAIL_TESTS on the Hurd., guix-commits, 2023/06/23
- 44/92: gnu: m4: Skip gnulib stack-overflow tests for the Hurd., guix-commits, 2023/06/23
- 47/92: gnu: openssl: Build fix for the Hurd., guix-commits, 2023/06/23
- 43/92: gnu: gettext-minimal: Remove XFAIL_TESTS for the Hurd., guix-commits, 2023/06/23
- 53/92: gnu: libgpg-error: Skip failing test on the Hurd., guix-commits, 2023/06/23
- 54/92: gnu: libgcrypt: Skip hanging benchmark tests on the Hurd., guix-commits, 2023/06/23
- 56/92: gnu: curl: Skip failing test on the Hurd., guix-commits, 2023/06/23