mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-19 05:07:11 -05:00
gnu: libhandy: Skip test that requires librsvg on non-x86_64.
* gnu/packages/gnome.scm (libhandy)[arguments]: Add 'skip-test-that-requires-svg' phase on non-x86_64.
This commit is contained in:
parent
73f78d556b
commit
3ee142ebd6
1 changed files with 8 additions and 0 deletions
|
@ -11476,6 +11476,14 @@ (define-public libhandy
|
|||
(search-input-file inputs
|
||||
"/xml/dtd/docbook/docbookx.dtd"))))
|
||||
(find-files "doc" "\\.xml"))))
|
||||
,@(if (target-x86-64?)
|
||||
'()
|
||||
'((add-after 'unpack 'skip-test-that-requires-svg
|
||||
(lambda _
|
||||
;; On non-x86-64, gdk-pixbuf lacks librsvg support, so
|
||||
;; skip the test that requires it.
|
||||
(substitute* "tests/meson.build"
|
||||
(("'test-avatar',") ""))))))
|
||||
(add-before 'check 'pre-check
|
||||
(lambda _
|
||||
;; Tests require a running X server.
|
||||
|
|
Loading…
Reference in a new issue