mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
Revert "gnu: libunistring: Fix make check for the Hurd."
This reverts commit 12e6a59238
, which used
XFAIL_TESTS to have 'make check' pass with failing tests "test-perror2"
"test-strerror_r" that now pass with glibc-2.37 and libc-for-target in
commencement.
This commit is contained in:
parent
cf1216d876
commit
d4306847bf
1 changed files with 2 additions and 6 deletions
|
@ -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, 2023 Janneke Nieuwenhuizen <janneke@gnu.org>
|
||||
;;; Copyright © 2016 Jan 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,7 +28,6 @@ (define-module (gnu packages libunistring)
|
|||
#: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))
|
||||
|
@ -61,10 +60,7 @@ (define-public libunistring
|
|||
(with-directory-excursion (string-append #$output "/lib")
|
||||
(install-file "libunistring.a"
|
||||
(string-append #$output:static "/lib"))
|
||||
(delete-file "libunistring.a")))))
|
||||
#:make-flags (if (target-hurd?)
|
||||
#~(list "XFAIL_TESTS=test-perror2 test-strerror_r")
|
||||
#~'())))
|
||||
(delete-file "libunistring.a")))))))
|
||||
(synopsis "C library for manipulating Unicode strings")
|
||||
(description
|
||||
"GNU libunistring is a library providing functions to manipulate
|
||||
|
|
Loading…
Reference in a new issue