mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 22:26:40 -05:00
gnu: appstream-glib: Fix failing tests.
* gnu/packages/glib.scm (appstream-glib)[arguments]<#:phases>{set-home}: Add a new phase 'set-home' for tests that want to write to $HOME. Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
parent
fc29c80b96
commit
d548fa9144
1 changed files with 5 additions and 1 deletions
|
@ -1107,7 +1107,11 @@ (define-public appstream-glib
|
|||
(lambda _
|
||||
(substitute* "libappstream-glib/as-self-test.c"
|
||||
(("g_test_add_func.*as_test_store_local_appdata_func);") ""))
|
||||
#t)))))
|
||||
#t))
|
||||
(add-before 'check 'set-home
|
||||
(lambda _
|
||||
;; Some tests want write access there.
|
||||
(setenv "HOME" "/tmp"))))))
|
||||
(home-page "https://github.com/hughsie/appstream-glib")
|
||||
(synopsis "Library for reading and writing AppStream metadata")
|
||||
(description "This library provides objects and helper methods to help
|
||||
|
|
Loading…
Reference in a new issue