[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
39/92: gnu: grep: Update hanging and failing tests on the Hurd.
From: |
guix-commits |
Subject: |
39/92: gnu: grep: Update hanging and failing tests 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 f1f1ec4e7e0121e9929ebf15b18d7d3ea99f25b3
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Fri Jun 2 15:42:36 2023 +0200
gnu: grep: Update hanging and failing tests on the Hurd.
* gnu/packages/base.scm (grep)[arguments]: When building natively on the
Hurd,
remove Rename phase 'skip-triple-backref-test' to 'skip-tests'. Remove
"tests/triple-backref" as it now passes. Add the hanging
"tests/hash-collision-perf" test, and the failing "tests/file" test.
---
gnu/packages/base.scm | 24 ++++++++++--------------
1 file changed, 10 insertions(+), 14 deletions(-)
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm
index 550be1a931..097055f7bf 100644
--- a/gnu/packages/base.scm
+++ b/gnu/packages/base.scm
@@ -135,21 +135,17 @@ command-line arguments, multiple languages, and so on.")
(string-append bin "/fgrep"))
(("^exec grep")
(string-append "exec " bin "/grep"))))))
- ,@(if (target-hurd?)
- '((add-before 'check 'skip-triple-backref-test
+ ,@(if (system-hurd?)
+ '((add-before 'check 'skip-test
(lambda _
- ;; This test is marked as malfunctioning on glibc systems
- ;; due to
- ;; <https://sourceware.org/bugzilla/show_bug.cgi?id=11053>
- ;; and it triggers a segfault with glibc 2.33 on GNU/Hurd.
- ;; Skip it.
- (substitute* "tests/triple-backref"
- (("^warn_" all)
- (string-append "exit 77\n" all))))))
- '()))
- #:make-flags ,(if (target-hurd?)
- ''("XFAIL_TESTS=test-perror2 equiv-classes") ;XXX
- ''())))
+ (substitute*
+ ;; This test hangs
+ '("tests/hash-collision-perf"
+ ;; This test fails
+ "tests/file")
+ (("^#!.*" all)
+ (string-append all "exit 77;\n"))))))
+ '()))))
(synopsis "Print lines matching a pattern")
(description
"grep is a tool for finding text inside files. Text is found by
- 50/92: gnu: elfutils: Skip failing tests on the Hurd., (continued)
- 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, 2023/06/23
- 39/92: gnu: grep: Update hanging and failing tests on the Hurd.,
guix-commits <=
- 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
- 63/92: gnu: cairo: Support building for the Hurd., guix-commits, 2023/06/23