guix-commits
[Top][All Lists]
Advanced

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

67/85: gnu: swig: Skip tests when building for the Hurd.


From: guix-commits
Subject: 67/85: gnu: swig: Skip tests when building for the Hurd.
Date: Thu, 15 Jun 2023 02:32:44 -0400 (EDT)

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

commit 3237c833c04c5f0895082109ff2a0ced5a7d503b
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Mon Jun 12 13:29:00 2023 +0200

    gnu: swig: Skip tests when building for the Hurd.
    
    * gnu/packages/swig.scm (swig)[arguments]: When building for the Hurd,
    set #:tests? to #false.
---
 gnu/packages/swig.scm | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/gnu/packages/swig.scm b/gnu/packages/swig.scm
index 6e2fb8b4e9..42996fa812 100644
--- a/gnu/packages/swig.scm
+++ b/gnu/packages/swig.scm
@@ -4,6 +4,7 @@
 ;;; Copyright © 2018, 2021 Marius Bakke <marius@gnu.org>
 ;;; Copyright © 2019 Efraim Flashner <efraim@flashner.co.il>
 ;;; Copyright © 2020 Arun Isaac <arunisaac@systemreboot.net>
+;;; Copyright © 2023 Janneke Nieuwenhuizen <janneke@gnu.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -25,6 +26,7 @@
   #:use-module (guix download)
   #:use-module (guix licenses)
   #:use-module (guix build-system gnu)
+  #:use-module (guix utils)
   #:use-module (gnu packages)
   #:use-module (gnu packages boost)
   #:use-module (gnu packages guile)
@@ -54,6 +56,7 @@
                          perl))
                      ;;("python" ,python-wrapper)
     (inputs (list pcre))
+    (arguments (list #:tests? (not (target-hurd?))))
     (home-page "https://swig.org/";)
     (synopsis
      "Interface compiler that connects C/C++ code to higher-level languages")



reply via email to

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