summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYelninei <yelninei@tutamail.com>2026-05-01 19:45:27 +0000
committerAndreas Enge <andreas@enge.fr>2026-08-23 16:37:52 +0200
commit572cffd7a94a948d57bb502f6e323ce9cc732872 (patch)
tree1966487aefa8e31312a2889c876b8e3d3a2d7b07
parentedf04282955ac4dd9a62ee4069b9a0d04391b142 (diff)
gnu: sed: Mark gnulib test as XFAIL on the Hurd.
* gnu/packages/base.scm (sed)[arguments]<#:make-flags>: XFAIL test-open on the Hurd. Change-Id: Ia1de8551761fe9a6b37de7e1b93096a56d7949f7
-rw-r--r--gnu/packages/base.scm7
1 files changed, 7 insertions, 0 deletions
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm
index 2de385c673e..78928998779 100644
--- a/gnu/packages/base.scm
+++ b/gnu/packages/base.scm
@@ -206,6 +206,13 @@ including, for example, recursive directory searching.")
206 (base32 206 (base32
207 "0xsj5xq22ljhbawssw29dy2s3ff3w4mh6z0zakndri1fz7x9y5sd")))) 207 "0xsj5xq22ljhbawssw29dy2s3ff3w4mh6z0zakndri1fz7x9y5sd"))))
208 (build-system gnu-build-system) 208 (build-system gnu-build-system)
209 (arguments
210 (list
211 #:make-flags
212 #~#$(if (and (not (%current-target-system))
213 (target-hurd?))
214 #~'("XFAIL_TESTS=test-open")
215 #~'())))
209 (synopsis "Stream editor") 216 (synopsis "Stream editor")
210 (native-inputs (list perl)) ;for tests 217 (native-inputs (list perl)) ;for tests
211 (description 218 (description