Skip to content
Snippets Groups Projects
Unverified Commit 1de23e55 authored by Tobias Geerinckx-Rice's avatar Tobias Geerinckx-Rice
Browse files

gnu: zutils: Fix test failure.

* gnu/packages/compression.scm (zutils)[arguments]: Add a
‘disable-failing-tests’ phase.
parent 5d5d68de
No related branches found
No related tags found
No related merge requests found
...@@ -1994,6 +1994,14 @@ (define-public zutils ...@@ -1994,6 +1994,14 @@ (define-public zutils
(list "--sysconfdir=/etc") (list "--sysconfdir=/etc")
#:phases #:phases
(modify-phases %standard-phases (modify-phases %standard-phases
(add-before 'check 'disable-failing-tests
;; XXX ‘zgrep -L’ inverts the exit status too, which the test suite
;; doesn't expect. Bug report probably stuck in moderation.
(lambda _
(substitute* "testsuite/check.sh"
(("\"\\$\\{ZGREP\\}\" -N -L \"GNU\"") "true")
(("\"\\$\\{ZGREP\\}\" -N -L \"nx_pattern\"") "false"))
#t))
(replace 'install (replace 'install
(lambda* (#:key make-flags outputs #:allow-other-keys) (lambda* (#:key make-flags outputs #:allow-other-keys)
(apply invoke "make" "install" (apply invoke "make" "install"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment