guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: libunistring: Fix make check for the Hurd.


From: guix-commits
Subject: branch master updated: gnu: libunistring: Fix make check for the Hurd.
Date: Wed, 31 May 2023 01:53:07 -0400

This is an automated email from the git hooks/post-receive script.

janneke pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 12e6a59238 gnu: libunistring: Fix make check for the Hurd.
12e6a59238 is described below

commit 12e6a5923812abf180f03bea9e07dd99244a3fcd
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Wed May 31 07:14:51 2023 +0200

    gnu: libunistring: Fix make check for the Hurd.
    
    * gnu/packages/libunistring.scm (libunistring)[arguments]: Set XFAIL_TESTS
    with test-perror2, and test-strerror_r when building to the Hurd.
---
 gnu/packages/libunistring.scm | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/libunistring.scm b/gnu/packages/libunistring.scm
index eccd053a35..e68b7d2378 100644
--- a/gnu/packages/libunistring.scm
+++ b/gnu/packages/libunistring.scm
@@ -2,7 +2,7 @@
 ;;; Copyright © 2012, 2013, 2014 Ludovic Courtès <ludo@gnu.org>
 ;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
 ;;; Copyright © 2016, 2018, 2022 Efraim Flashner <efraim@flashner.co.il>
-;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
+;;; Copyright © 2016, 2023 Janneke Nieuwenhuizen <janneke@gnu.org>
 ;;; Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com>
 ;;; Copyright © 2017 Eric Bavier <bavier@member.fsf.org>
 ;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
@@ -28,6 +28,7 @@
   #:use-module (guix packages)
   #:use-module (guix download)
   #:use-module (guix gexp)
+  #:use-module (guix utils)
   #:use-module (guix build-system gnu)
   #:use-module (gnu packages)
   #:use-module (gnu packages base))
@@ -60,7 +61,10 @@
               (with-directory-excursion (string-append #$output "/lib")
                 (install-file "libunistring.a"
                               (string-append #$output:static "/lib"))
-                (delete-file "libunistring.a")))))))
+                (delete-file "libunistring.a")))))
+      #:make-flags (if (target-hurd?)
+                       #~(list "XFAIL_TESTS=test-perror2 test-strerror_r")
+                       #~'())))
    (synopsis "C library for manipulating Unicode strings")
    (description
     "GNU libunistring is a library providing functions to manipulate



reply via email to

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