guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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


From: guix-commits
Subject: 02/03: gnu: grep: Skip failing tests on GNU/Hurd.
Date: Thu, 27 Oct 2022 19:30:13 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 6c16eb24d131bd4a35891d109a0bef424def7371
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Thu Oct 27 11:31:41 2022 +0200

    gnu: grep: Skip failing tests on GNU/Hurd.
    
    * gnu/packages/base.scm (grep)[arguments]: Add #:make-flags.
---
 gnu/packages/base.scm | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm
index fe2bb387c3..eba3c6d157 100644
--- a/gnu/packages/base.scm
+++ b/gnu/packages/base.scm
@@ -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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]