guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: hitch: Rewrite grep command to not use perl regexps.


From: guix-commits
Subject: 01/02: gnu: hitch: Rewrite grep command to not use perl regexps.
Date: Sat, 29 Jul 2023 08:47:12 -0400 (EDT)

arunisaac pushed a commit to branch master
in repository guix.

commit 5a462c0d3dad9f98b52f0144c5e3601b12912d1d
Author: Arun Isaac <arunisaac@systemreboot.net>
AuthorDate: Sat Jul 29 13:22:42 2023 +0100

    gnu: hitch: Rewrite grep command to not use perl regexps.
    
    * gnu/packages/web.scm (hitch)[arguments]: Rewrite grep command in a test to
    not use perl regexps.
---
 gnu/packages/web.scm | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index b7be06cd7b..08daac5266 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -5958,6 +5958,14 @@ on the fly.")
      `(#:phases (modify-phases %standard-phases
                   (add-before 'check 'pre-check
                     (lambda _
+                      ;; Our grep is compiled without perl regexp support. So,
+                      ;; rewrite the grep command to not use it. \t tab
+                      ;; characters are supported only in perl regexps. So,
+                      ;; put in literal tabs using printf instead.
+                      (substitute* "src/tests/test32-proxy-authority.sh"
+                        (("grep -Pq") "grep -q")
+                        (("extension:\\\\tdefault")
+                         "extension:$(printf '\\011')default"))
                       ;; Most tests attempts to access hitch-tls.org which is
                       ;; unavailable in the build container.  Run them against
                       ;; a dummy local web server instead.



reply via email to

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