gnu: grep: Work around test failure with glibc 2.28.
* gnu/packages/base.scm (grep)[arguments]: Add phase 'disable-failing-tests'.
This commit is contained in:
parent
a8dcf6cec7
commit
8c8ded2cc9
|
@ -102,6 +102,15 @@ command-line arguments, multiple languages, and so on.")
|
|||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-before 'check 'disable-failing-tests
|
||||
(lambda _
|
||||
;; These tests are expected to fail due to a glibc bug which has
|
||||
;; been fixed in 2.28, so they are unexpectedly passing. They
|
||||
;; should be fixed for grep versions > 3.1.
|
||||
(substitute* "tests/Makefile.in"
|
||||
(("^[[:blank:]]+backref-alt[[:blank:]]+\\\\") "\\")
|
||||
(("^[[:blank:]]+triple-backref[[:blank:]]+\\\\") "\\"))
|
||||
#t))
|
||||
(add-after 'install 'fix-egrep-and-fgrep
|
||||
;; Patch 'egrep' and 'fgrep' to execute 'grep' via its
|
||||
;; absolute file name instead of searching for it in $PATH.
|
||||
|
|
Loading…
Reference in New Issue