[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/04: gnu: grep: Skip a test on the 64bit Hurd.
From: |
guix-commits |
Subject: |
02/04: gnu: grep: Skip a test on the 64bit Hurd. |
Date: |
Mon, 25 Nov 2024 11:33:16 -0500 (EST) |
janneke pushed a commit to branch hurd-team
in repository guix.
commit bbca66ecc5f96fcea601e41e6f1ce54786808706
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Mon Nov 25 12:50:10 2024 +0100
gnu: grep: Skip a test on the 64bit Hurd.
* gnu/packages/base.scm (grep)[arguments]: When building on the 64bit
Hurd, skip the "stack-overflow" test.
Change-Id: Iab16194f4cd2911b4610dddd855064ddc4958dd9
---
gnu/packages/base.scm | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm
index afdea31aad..c7e7585647 100644
--- a/gnu/packages/base.scm
+++ b/gnu/packages/base.scm
@@ -170,6 +170,13 @@ command-line arguments, multiple languages, and so on.")
"tests/file")
(("^#!.*" all)
(string-append all "exit 77;\n"))))))
+ #~())
+ #$@(if (system-hurd64?)
+ #~((add-before 'check 'skip-test
+ (lambda _
+ (substitute* "tests/stack-overflow" ;This test
hangs
+ (("^#!.*" all)
+ (string-append all "exit 77;\n"))))))
#~()))))
(synopsis "Print lines matching a pattern")
(description