me
/
guix
Archived
1
0
Fork 0

gnu: grep: Skip failing tests on GNU/Hurd.

* gnu/packages/base.scm (grep)[arguments]: Add #:make-flags.
Ludovic Courtès 2022-10-27 11:31:41 +02:00
parent 842b73fd2b
commit 6c16eb24d1
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 4 additions and 1 deletions

View File

@ -130,7 +130,10 @@ command-line arguments, multiple languages, and so on.")
(substitute* (list (string-append bin "/egrep")
(string-append bin "/fgrep"))
(("^exec grep")
(string-append "exec " bin "/grep")))))))))
(string-append "exec " bin "/grep")))))))
#:make-flags ,(if (hurd-target?)
''("XFAIL_TESTS=test-perror2 equiv-classes") ;XXX
''())))
(synopsis "Print lines matching a pattern")
(description
"grep is a tool for finding text inside files. Text is found by