mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
[WORKAROUND] glib: Skip read-only-directory test.
* gnu/packages/glib.scm (glib)[#:phases]<disable-failing-tests>: Also disable read-only-directory test in fileutils.c.
This commit is contained in:
parent
7c1b4a14e7
commit
d1d10b5afa
1 changed files with 6 additions and 1 deletions
|
@ -300,7 +300,12 @@ information, refer to the @samp{dbus-daemon(1)} man page.")))
|
|||
(lambda _
|
||||
(with-directory-excursion "glib/tests"
|
||||
(substitute* '("unix.c" "utils.c")
|
||||
(("[ \t]*g_test_add_func.*;") "")))
|
||||
(("[ \t]*g_test_add_func.*;") ""))
|
||||
|
||||
;; This test creates a read-only directory, which later leads to
|
||||
;; a build error when attempting to clean it up.
|
||||
(substitute* '("fileutils.c")
|
||||
(("[ \t]*g_test_add_func.*read-only-directory.*;") "")))
|
||||
(with-directory-excursion "gio/tests"
|
||||
(substitute* '("contenttype.c"
|
||||
"gdbus-address-get-session.c"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue