guix-commits
[Top][All Lists]
Advanced

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

73/92: gnu: guile-git: Skip http proxy test on the Hurd.


From: guix-commits
Subject: 73/92: gnu: guile-git: Skip http proxy test on the Hurd.
Date: Fri, 23 Jun 2023 12:45:46 -0400 (EDT)

janneke pushed a commit to branch hurd-team
in repository guix.

commit fbc546cceb01f51fc0995c19db159640f8cc4655
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Tue Jun 13 09:37:07 2023 +0200

    gnu: guile-git: Skip http proxy test on the Hurd.
    
    * gnu/packages/guile.scm (guile-git)[arguments]: When building natively on 
the
    Hurd, add phase 'skip-tests/hurd'.
---
 gnu/packages/guile.scm | 15 ++++++++++++++-
 1 file changed, 14 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm
index d71d2e0b47..30d8150db1 100644
--- a/gnu/packages/guile.scm
+++ b/gnu/packages/guile.scm
@@ -838,7 +838,20 @@ type system, elevating types to first-class status.")
                  (lambda _
                    (substitute* "Makefile.am"
                      ((".*tests/blob\\.scm.*") ""))))))
-           '())))
+           '())
+       ,@(if (system-hurd?)
+             (list
+              #:phases
+              #~(modify-phases %standard-phases
+                  (add-after 'unpack 'skip-tests/hurd
+                    (lambda _
+                      (substitute* "tests/proxy.scm"
+                        (("\\(test-begin.*" all)
+                         (string-append
+                          all
+                          "(when (string-ci= \"GNU\" (vector-ref (uname) 0))\n"
+                          "  (test-skip 1))\n")))))))
+             '())))
     (native-inputs
      (list pkg-config autoconf automake texinfo guile-3.0 
guile-bytestructures))
     (inputs



reply via email to

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