mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: gtk: Disable failing tests on aarch64.
* gnu/packages/gtk.scm (gtk): Disable failing tests on aarch64. Change-Id: Ia950b25fa2141daff0a01a69d9dfb551e26116ea Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
parent
cf59876e1e
commit
54ec97bfda
1 changed files with 28 additions and 0 deletions
|
@ -1242,6 +1242,34 @@ (define-public gtk
|
|||
;; related warnings (see:
|
||||
;; https://gitlab.gnome.org/GNOME/gtk/-/issues/5169).
|
||||
(("[ \t]*'inscription-markup.ui',") ""))
|
||||
;; These tests fail on an Apple M1 (aarch64) with the following errors:
|
||||
;; - MESA: error: ZINK: failed to choose pdev
|
||||
;; - libEGL warning: egl: failed to create dri2 screen
|
||||
;; - MESA: error: ZINK: failed to choose pdev
|
||||
;; - glx: failed to create drisw screen
|
||||
#$@(if (target-aarch64?)
|
||||
#~((substitute* "testsuite/gsk/meson.build"
|
||||
(("'border-bottom-right',") "")
|
||||
(("'border-one-rounded',") "")
|
||||
(("'border-opacity',") "")
|
||||
(("'border-zero-width-color',") "")
|
||||
(("'borders-rotated',") "")
|
||||
(("'borders-scaled',") "")
|
||||
(("'clip-in-smaller-rounded-clip',") "")
|
||||
(("'css-background',") "")
|
||||
(("'empty-border',") "")
|
||||
(("'empty-inset-shadow',") "")
|
||||
(("'empty-outset-shadow',") "")
|
||||
(("'inset-shadow-multiple',") "")
|
||||
(("'outset-shadow-scale-offset',") "")
|
||||
(("'outset_shadow_offset_both',") "")
|
||||
(("'outset_shadow_offset_x',") "")
|
||||
(("'outset_shadow_offset_y',") "")
|
||||
(("'outset_shadow_rounded_top',") "")
|
||||
(("'outset_shadow_simple',") "")
|
||||
(("'shadow-offset-clip',") "")
|
||||
(("'shrink-rounded-border',") "")))
|
||||
#~())
|
||||
;; XXX: These failures appear specific to i686 – investigate them.
|
||||
#$@(if (target-x86-32?)
|
||||
#~((substitute* "testsuite/gsk/meson.build"
|
||||
|
|
Loading…
Reference in a new issue