guix-commits
[Top][All Lists]
Advanced

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

01/03: gnu: tls: Remove datefudge and disable tests on the Hurd.


From: guix-commits
Subject: 01/03: gnu: tls: Remove datefudge and disable tests on the Hurd.
Date: Mon, 20 Apr 2020 02:03:04 -0400 (EDT)

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

commit 2d49f175125cb83b3cffae89026404138f463aa3
Author: Jan (janneke) Nieuwenhuizen <address@hidden>
AuthorDate: Wed Apr 15 18:14:24 2020 +0200

    gnu: tls: Remove datefudge and disable tests on the Hurd.
    
    * gnu/packages/tls.scm (gnutls)[arguments]: When compiling for the Hurd,
    disable tests.
    [native-inputs]: When compiling for the Hurd, do not include datefudge.
---
 gnu/packages/tls.scm | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm
index 27d38ed..c1bb7f6 100644
--- a/gnu/packages/tls.scm
+++ b/gnu/packages/tls.scm
@@ -181,7 +181,8 @@ living in the same process.")
                "0jvca1qahn9lrwv6f5kfs95icirc15b2a8x9fzczyj996ipg3b5z"))))
     (build-system gnu-build-system)
     (arguments
-     `(; Ensure we don't keep a reference to this buggy software.
+     `(,@(if (hurd-target?) '(#:tests? #f) '())
+       ; Ensure we don't keep a reference to this buggy software.
        #:disallowed-references (,net-tools)
        #:configure-flags
        (list
@@ -230,7 +231,8 @@ living in the same process.")
              `(("net-tools" ,net-tools)))
        ("pkg-config" ,pkg-config)
        ("which" ,which)
-       ("datefudge" ,datefudge)                   ;tests rely on 'datefudge'
+       ,@(if (hurd-target?) '()
+             `(("datefudge" ,datefudge)))         ;tests rely on 'datefudge'
        ("util-linux" ,util-linux)))               ;one test needs 'setsid'
     (inputs
      `(("guile" ,guile-3.0)))



reply via email to

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