guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: ocaml-ppxlib: Fix tests.


From: guix-commits
Subject: 01/02: gnu: ocaml-ppxlib: Fix tests.
Date: Wed, 12 Apr 2023 15:53:35 -0400 (EDT)

roptat pushed a commit to branch core-updates
in repository guix.

commit 8557eb9ffb909d5df8aba5ca1c444f23f083d7e9
Author: Simon Tournier <zimon.toutoune@gmail.com>
AuthorDate: Wed Apr 12 19:09:39 2023 +0200

    gnu: ocaml-ppxlib: Fix tests.
    
    * gnu/packages/ocaml.scm (ocaml-ppxlib)[arguments]: Substitue obsolete 
'egrep'
    by 'grep -E'.
    
    Signed-off-by: Julien Lepiller <julien@lepiller.eu>
---
 gnu/packages/ocaml.scm | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index c6dca2874f..f1c4e35044 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -6660,7 +6660,12 @@ the OCaml code.")
              (substitute* "test/ppx_import_support/test.ml"
                (("\\(Failure") "Failure")
                (("  \"(Some ppx-es.*)\")" _ m)
-                (string-append " \"" m "\"."))))))))
+                (string-append " \"" m "\".")))))
+         (add-after 'fix-test-format 'fix-egrep
+           (lambda _
+             ;; egrep is obsolescent; using grep -E
+             (substitute* "test/expansion_context/run.t"
+               (("egrep") "grep -E")))))))
     (propagated-inputs
      (list ocaml-compiler-libs
            ocaml-ppx-derivers



reply via email to

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